diff options
author | Araq <rumpf_a@web.de> | 2012-08-24 17:33:04 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-08-24 17:33:04 +0200 |
commit | d17caa86e841489d92165d9caa13c2d8bc86afd5 (patch) | |
tree | 9504e5dd71501887da52fbc1f0fd39294ef913ea /lib/wrappers/python.nim | |
parent | afcff024a1ab335032aa8a98d844f6fbc701170e (diff) | |
download | Nim-d17caa86e841489d92165d9caa13c2d8bc86afd5.tar.gz |
objects with no ancestor are not implicitely final
Diffstat (limited to 'lib/wrappers/python.nim')
-rwxr-xr-x | lib/wrappers/python.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/wrappers/python.nim b/lib/wrappers/python.nim index 3d0b923e2..3e6543765 100755 --- a/lib/wrappers/python.nim +++ b/lib/wrappers/python.nim @@ -341,7 +341,7 @@ type float*: float64 imag*: float64 - TPyObject*{.pure.} = object + TPyObject*{.pure, inheritable.} = object ob_refcnt*: int ob_type*: PPyTypeObject |