optimise dict(a=1,b=2,...) into {'a':1, 'b':2, ...}, also works for Py3 keyword ident...
authorStefan Behnel <scoder@users.berlios.de>
Fri, 28 Nov 2008 12:39:56 +0000 (13:39 +0100)
committerStefan Behnel <scoder@users.berlios.de>
Fri, 28 Nov 2008 12:39:56 +0000 (13:39 +0100)
commit63968d47bfd2c8ffdc7a1f7935a57403500ff642
treef2b0d61d02744c929304671321e70d9863023c32
parent4ff586a394daa045a6927a83cc7ed01526a5126a
optimise dict(a=1,b=2,...) into {'a':1, 'b':2, ...}, also works for Py3 keyword identifiers as run/dict.pyx shows
Cython/Compiler/Main.py
Cython/Compiler/Optimize.py