- 15 Dec, 2007 3 commits
-
-
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 7 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
-
Alexandre Vassalotti authored
-
Raymond Hettinger authored
Fix bug 1604. deque.__init__() did not clear existing contents like list.__init__. Not a backport candidate.
-
- 12 Dec, 2007 1 commit
-
-
Christian Heimes authored
-
- 11 Dec, 2007 5 commits
-
-
Gerhard Häring authored
- Backported a workaround for a bug in SQLite 3.2.x/3.3.x versions where a statement recompilation with no bound parameters lead to a segfault - Backported a fix necessary because of an SQLite API change in version 3.5. This prevents segfaults when executing empty queries, like our test suite does
-
Kurt B. Kaiser authored
Cosmetic changes, one bug. Remove tabpage.py, replaced by tabbedpages.py
-
Georg Brandl authored
-
Christian Heimes authored
The new float repr causes too much trouble and pain. I'm disabling the feature until we have sorted out the issues on all machines. 64bit machines seem to have issues and Guido has reported even worse. Guido: It's pretty bad actually -- repr(1e5) comes out as '1.0'... Ditto for repr(1eN) for most N... Both in 2.6 and in 3.0...
-
Kurt B. Kaiser authored
-
- 10 Dec, 2007 5 commits
-
-
Guido van Rossum authored
in signalmodule.c more robust. Includes Martin von Loewis's suggestion to set is_tripped after .tripped.
-
Christian Heimes authored
Issue #1580: New free format floating point representation based on "Floating-Point Printer Sample Code", by Robert G. Burger. For example repr(11./5) now returns '2.2' instead of '2.2000000000000002'. Thanks to noam for the patch! I had to modify doubledigits.c slightly to support X64 and IA64 machines on Windows. I also added the new file to the three project files.
-
Guido van Rossum authored
-
Christian Heimes authored
-
Christian Heimes authored
Added wide char api variants of getch and putch to msvcrt module. The wide char methods are required to fix #1578 in py3k. I figured out that they might be useful in 2.6, too.
-
- 09 Dec, 2007 6 commits
-
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
* remove parameter default that didn't make sense * properly escape values in output Thanks to Jeff Wheeler from GHOP!
-
Georg Brandl authored
-
Georg Brandl authored
-
Brett Cannon authored
-