diff options
| author | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2021-11-26 18:20:21 +0100 |
|---|---|---|
| committer | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2021-11-27 16:07:14 +0100 |
| commit | 6fd1e6619b0aeef1f7e916e474693157450e765f (patch) | |
| tree | 023f5c29867010d5fec8a6b1b17e279898aab0f8 /tools/snippets_translate/main.py | |
| parent | 742a39962f1ba9c0e42f387394768c13793144c0 (diff) | |
snippets_translate: Handle header files as well
Use suffix .h.py for them to distinguish them from .cpp files.
Pick-to: 6.2
Task-number: PYSIDE-1721
Change-Id: Iea4bfa770833f319b65c1ea7f83fb1a325ce8c62
Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'tools/snippets_translate/main.py')
| -rw-r--r-- | tools/snippets_translate/main.py | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/tools/snippets_translate/main.py b/tools/snippets_translate/main.py index 792328933..53a941a8c 100644 --- a/tools/snippets_translate/main.py +++ b/tools/snippets_translate/main.py @@ -277,7 +277,8 @@ def translate_file(file_path, final_path, debug, write): if write: # Open the final file - target_file = final_path.with_suffix(".py") + new_suffix = ".h.py" if final_path.name.endswith(".h") else ".py" + target_file = final_path.with_suffix(new_suffix) # Directory where the file will be placed, if it does not exists # we create it. The option 'parents=True' will create the parents @@ -338,13 +339,9 @@ def copy_file(file_path, py_path, category, category_path, write=False, debug=Fa else: log.info(f"{status_msg:10s} {final_path}") - # Change .cpp to .py - # TODO: - # - What do we do with .h in case both .cpp and .h exists with - # the same name? - + # Change .cpp to .py, .h to .h.py # Translate C++ code into Python code - if final_path.name.endswith(".cpp"): + if final_path.name.endswith(".cpp") or final_path.name.endswith(".h"): translate_file(file_path, final_path, debug, write) return status |
