diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2000-03-03 17:06:13 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2000-03-03 17:06:13 (GMT) |
commit | 1b7a70fa52a56d016b8b2f3699a407bb356a9c59 (patch) | |
tree | 1f432329730609b8faf907bcf7f89b46b2d32fdc /Mac/Modules/qt/qtscan.py | |
parent | 6dc8ce9108a051ccf3337e11d5dfdcc011c325e9 (diff) | |
download | cpython-1b7a70fa52a56d016b8b2f3699a407bb356a9c59.zip cpython-1b7a70fa52a56d016b8b2f3699a407bb356a9c59.tar.gz cpython-1b7a70fa52a56d016b8b2f3699a407bb356a9c59.tar.bz2 |
Fixed parameters to a few time and timebase calls: InOut parameters were
inadvertantly seen as out-only.
Diffstat (limited to 'Mac/Modules/qt/qtscan.py')
-rw-r--r-- | Mac/Modules/qt/qtscan.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Mac/Modules/qt/qtscan.py b/Mac/Modules/qt/qtscan.py index ce79380..5f35195 100644 --- a/Mac/Modules/qt/qtscan.py +++ b/Mac/Modules/qt/qtscan.py @@ -110,6 +110,14 @@ class MyScanner(Scanner): # MCDoAction and more ([('void', '*', 'OutMode')], [('mcactionparams', '*', 'InMode')]), + # SetTimeBaseZero. Does not handle NULLs, unfortunately + ([('TimeRecord', 'zero', 'OutMode')], [('TimeRecord', 'zero', 'InMode')]), + + # ConvertTime and ConvertTimeScale + ([('TimeRecord', 'inout', 'OutMode')], [('TimeRecord', 'inout', 'InOutMode')]), + + # AddTime and SubtractTime + ([('TimeRecord', 'dst', 'OutMode')], [('TimeRecord', 'dst', 'InOutMode')]), ] if __name__ == "__main__": |