From: Stefan Behnel Date: Mon, 3 Sep 2007 18:07:01 +0000 (+0200) Subject: fixed typo X-Git-Tag: 0.9.6.14~29^2~153 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5ecc84e39e2383903053385c0cfd9917f9a059d0;p=cython.git fixed typo --- diff --git a/Cython/Compiler/Nodes.py b/Cython/Compiler/Nodes.py index 86ec00d8..12d440a7 100644 --- a/Cython/Compiler/Nodes.py +++ b/Cython/Compiler/Nodes.py @@ -2872,7 +2872,7 @@ static int __Pyx_GetStarArgs( if (*kwds) { char **p; kwds1 = PyDict_New(); - if (!kwds) + if (!kwds1) goto bad; *kwds2 = PyDict_Copy(*kwds); if (!*kwds2)