diff options
author | Andreas Rumpf <andreas@andreas-desktop> | 2010-01-17 22:19:10 +0100 |
---|---|---|
committer | Andreas Rumpf <andreas@andreas-desktop> | 2010-01-17 22:19:10 +0100 |
commit | 8259d9d15aa34dbbd84bb19150ab16a27378dd88 (patch) | |
tree | 585fa5a6e030824a4122ad7597fb81e47351c388 /lib/wrappers/python.nim | |
parent | 5c33646e8312b7669b4829156bbf44875d22c7cd (diff) | |
download | Nim-8259d9d15aa34dbbd84bb19150ab16a27378dd88.tar.gz |
wrappers do not contain invalid identifiers
Diffstat (limited to 'lib/wrappers/python.nim')
-rwxr-xr-x | lib/wrappers/python.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/wrappers/python.nim b/lib/wrappers/python.nim index c9f68e52d..723dc68fd 100755 --- a/lib/wrappers/python.nim +++ b/lib/wrappers/python.nim @@ -1,6 +1,6 @@ # # Light-weight binding for the Python interpreter -# (c) 2009 Andreas Rumpf +# (c) 2010 Andreas Rumpf # Based on 'PythonEngine' module by Dr. Dietmar Budelsky # # @@ -375,7 +375,7 @@ type TPyGetSetDef*{.final.} = object name*: cstring get*: Tgetter - set_*: Tsetter + setter*: Tsetter doc*: cstring closure*: Pointer |