projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0e75afb
)
Add semicolon after __PyxRefNannyDeclareContext
author
Vitja Makarov
<vitja.makarov@gmail.com>
Thu, 6 Jan 2011 07:01:14 +0000
(10:01 +0300)
committer
Vitja Makarov
<vitja.makarov@gmail.com>
Thu, 6 Jan 2011 07:01:14 +0000
(10:01 +0300)
Cython/Compiler/Code.py
patch
|
blob
|
history
diff --git
a/Cython/Compiler/Code.py
b/Cython/Compiler/Code.py
index 0215ed9a784415c21ecb36b6eede2aaf9c033baf..4423469c5c8af5c0c6fef19d60e2d8cf62393dc9 100644
(file)
--- a/
Cython/Compiler/Code.py
+++ b/
Cython/Compiler/Code.py
@@
-1361,7
+1361,7
@@
class CCodeWriter(object):
return self.globalstate.lookup_filename(filename)
def put_declare_refcount_context(self):
- self.putln('__Pyx_RefNannyDeclareContext')
+ self.putln('__Pyx_RefNannyDeclareContext
;
')
def put_setup_refcount_context(self, name):
self.putln('__Pyx_RefNannySetupContext("%s");' % name)