- 18 Dec, 2007 6 commits
-
-
Thomas Heller authored
-
Raymond Hettinger authored
New opcode, STORE_MAP saves the compiler from awkward stack manipulations and specializes for dicts using PyDict_SetItem instead of PyObject_SetItem. Old disassembly: 0 BUILD_MAP 0 3 DUP_TOP 4 LOAD_CONST 1 (1) 7 ROT_TWO 8 LOAD_CONST 2 ('x') 11 STORE_SUBSCR 12 DUP_TOP 13 LOAD_CONST 3 (2) 16 ROT_TWO 17 LOAD_CONST 4 ('y') 20 STORE_SUBSCR New disassembly: 0 BUILD_MAP 0 3 LOAD_CONST 1 (1) 6 LOAD_CONST 2 ('x') 9 STORE_MAP 10 LOAD_CONST 3 (2) 13 LOAD_CONST 4 ('y') 16 STORE_MAP
-
Christian Heimes authored
-
Christian Heimes authored
-
Christian Heimes authored
Amaury's ideas works great. Should we build the Python core with WINVER=0x0500 and _WIN32_WINNT=0x0500, too?
-
Raymond Hettinger authored
-
- 17 Dec, 2007 1 commit
-
-
Facundo Batista authored
is now simpler. Thanks Mark Dickinson.
-
- 16 Dec, 2007 11 commits
-
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Christian Heimes authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
- 15 Dec, 2007 4 commits
-
-
Georg Brandl authored
-
Georg Brandl authored
-
Christian Heimes authored
I had to modify Brett's patch slightly.
-
Raymond Hettinger authored
pointer copy and object increment in one pass. For small lists, save the overhead of the call to memcpy() -- this comes up in calls like f(*listcomp).
-
- 14 Dec, 2007 13 commits
-
-
Christian Heimes authored
The detection now works on Unix with Makefile, Makefile with VPATH and on Windows.
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Georg Brandl authored
Thanks to Ian Bruntlett and Robert Lehmann.
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Christian Heimes authored
-
Christian Heimes authored
-
Raymond Hettinger authored
-
Christian Heimes authored
I added also the feature that a @prop.getter decorator does not overwrite the doc string of the property if it was given as an argument to property().
-
Christian Heimes authored
-
- 13 Dec, 2007 5 commits
-
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Thomas Heller authored
-
Guido van Rossum authored
run it and check in the resulting configure file.
-
Christian Heimes authored
-