projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ff067a8
)
cleanup
author
Stefan Behnel
<scoder@users.berlios.de>
Mon, 15 Nov 2010 21:16:15 +0000
(22:16 +0100)
committer
Stefan Behnel
<scoder@users.berlios.de>
Mon, 15 Nov 2010 21:16:15 +0000
(22:16 +0100)
Cython/Compiler/ExprNodes.py
patch
|
blob
|
history
diff --git
a/Cython/Compiler/ExprNodes.py
b/Cython/Compiler/ExprNodes.py
index 20b8c4d63acbbbebf1a86012a5a7c4c836eab921..3fae480af1d154295fc91f3f1a1c09a39cf1915c 100755
(executable)
--- a/
Cython/Compiler/ExprNodes.py
+++ b/
Cython/Compiler/ExprNodes.py
@@
-1501,7
+1501,6
@@
class NameNode(AtomicExprNode):
namespace = Naming.builtins_cname
else: # entry.is_pyglobal
namespace = entry.scope.namespace_cname
- code.globalstate.use_utility_code(getitem_dict_utility_code)
code.putln(
'%s = PyObject_GetItem(%s, %s); %s' % (
self.result(),
@@
-7504,7
+7503,6
@@
static CYTHON_INLINE void __Pyx_RaiseNoneNotIterableError(void) {
getitem_dict_utility_code = UtilityCode(
proto = """
-
#if PY_MAJOR_VERSION >= 3
static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key) {
PyObject *value;