Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Use PEP 8. | Georg Brandl | 2007-12-16 | 1 | -6/+6 | |
| | ||||||
* | Simplify. | Georg Brandl | 2007-12-16 | 1 | -3/+1 | |
| | ||||||
* | Fixed #1638: %zd configure test fails on Linux | Christian Heimes | 2007-12-16 | 3 | -6/+16 | |
| | ||||||
* | Adapt conf.py to new option names. | Georg Brandl | 2007-12-16 | 2 | -14/+35 | |
| | ||||||
* | Remove curious space-like characters. | Georg Brandl | 2007-12-16 | 1 | -3/+3 | |
| | ||||||
* | Remove another unnecessary Unicode character. | Georg Brandl | 2007-12-16 | 1 | -1/+1 | |
| | ||||||
* | Remove gratuitous unicode character. | Georg Brandl | 2007-12-16 | 1 | -1/+1 | |
| | ||||||
* | Remove orphaned footnote reference. | Georg Brandl | 2007-12-16 | 1 | -1/+1 | |
| | ||||||
* | Revert dummy commit now that the build slave is building. | Georg Brandl | 2007-12-16 | 1 | -1/+0 | |
| | ||||||
* | Dummy commit to investigate #1617. | Georg Brandl | 2007-12-16 | 1 | -0/+1 | |
| | ||||||
* | Argh, wrong version. | Georg Brandl | 2007-12-15 | 1 | -4/+0 | |
| | ||||||
* | Add note about future import needed for with statement. | Georg Brandl | 2007-12-15 | 1 | -0/+4 | |
| | ||||||
* | Fixed #1624: Remove output comparison for test_pep277 | Christian Heimes | 2007-12-15 | 2 | -8/+4 | |
| | | | | I had to modify Brett's patch slightly. | |||||
* | Optimize PyList_AsTuple(). Improve cache performance by doing the | Raymond Hettinger | 2007-12-15 | 1 | -5/+5 | |
| | | | | | | 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). | |||||
* | Fixed bug #1628 | Christian Heimes | 2007-12-14 | 2 | -3/+5 | |
| | | | | The detection now works on Unix with Makefile, Makefile with VPATH and on Windows. | |||||
* | Bump the version number, and make a few small edits | Andrew M. Kuchling | 2007-12-14 | 1 | -13/+15 | |
| | ||||||
* | Remove warning about URL | Andrew M. Kuchling | 2007-12-14 | 1 | -3/+1 | |
| | ||||||
* | Add usage note | Raymond Hettinger | 2007-12-14 | 1 | -2/+10 | |
| | ||||||
* | Faster and simpler _replace() method | Raymond Hettinger | 2007-12-14 | 2 | -2/+2 | |
| | ||||||
* | Add a section about nested listcomps to the tutorial. | Georg Brandl | 2007-12-14 | 2 | -0/+43 | |
| | | | | Thanks to Ian Bruntlett and Robert Lehmann. | |||||
* | Update method names for named tuples. | Raymond Hettinger | 2007-12-14 | 1 | -3/+3 | |
| | ||||||
* | Add line spacing for readability | Raymond Hettinger | 2007-12-14 | 2 | -9/+16 | |
| | ||||||
* | Fixed warning in ssl module | Christian Heimes | 2007-12-14 | 1 | -1/+1 | |
| | ||||||
* | Fixed a warning in _codecs_iso2022.c and some non C89 conform // comments. | Christian Heimes | 2007-12-14 | 3 | -4/+4 | |
| | ||||||
* | Cleaner method naming convention | Raymond Hettinger | 2007-12-14 | 3 | -30/+30 | |
| | ||||||
* | Fixed bug #1620: New @spam.getter property syntax modifies the property in ↵ | Christian Heimes | 2007-12-14 | 3 | -33/+171 | |
| | | | | | | place. 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(). | |||||
* | Silence a warning about an unsed variable in debug builds | Christian Heimes | 2007-12-14 | 1 | -2/+3 | |
| | ||||||
* | Small speedup | Raymond Hettinger | 2007-12-13 | 1 | -1/+2 | |
| | ||||||
* | Simplify implementation of __replace__() | Raymond Hettinger | 2007-12-13 | 2 | -2/+2 | |
| | ||||||
* | Ran autoconf. | Thomas Heller | 2007-12-13 | 1 | -2/+6 | |
| | ||||||
* | Patch #1608. Someone with access to autoconf 2.61 or higher needs to | Guido van Rossum | 2007-12-13 | 3 | -1/+10 | |
| | | | | run it and check in the resulting configure file. | |||||
* | Fixed bug #1613: Makefile's VPATH feature is broken | Christian Heimes | 2007-12-13 | 2 | -1/+4 | |
| | ||||||
* | Fix issue #1313119: urlparse "caches" parses regardless of encoding | Alexandre Vassalotti | 2007-12-13 | 2 | -1/+11 | |
| | ||||||
* | Fix bug 1604. deque.__init__() did not clear existing contents like ↵ | Raymond Hettinger | 2007-12-13 | 3 | -4/+9 | |
| | | | | list.__init__. Not a backport candidate. | |||||
* | Fixed a nasty problem in the xxmodule.c | Christian Heimes | 2007-12-12 | 1 | -1/+1 | |
| | ||||||
* | Forward-port of commit 59184. | Gerhard Häring | 2007-12-11 | 2 | -4/+14 | |
| | | | | | | | | | - 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 | |||||
* | IDLE_tabbedpages.071101.patch Tal Einat | Kurt B. Kaiser | 2007-12-11 | 2 | -148/+47 | |
| | | | | Cosmetic changes, one bug. Remove tabpage.py, replaced by tabbedpages.py | |||||
* | Add another GHOP contributor. | Georg Brandl | 2007-12-11 | 1 | -0/+1 | |
| | ||||||
* | The new float repr causes too much trouble and pain. I'm disabling the ↵ | Christian Heimes | 2007-12-11 | 6 | -10/+21 | |
| | | | | | | | 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... | |||||
* | format_paragraph_event wasn't returning 'break' | Kurt B. Kaiser | 2007-12-11 | 1 | -0/+1 | |
| | ||||||
* | Patch #1643738 by Ulisses Furquim -- make the is_tripped variable | Guido van Rossum | 2007-12-10 | 2 | -5/+27 | |
| | | | | | in signalmodule.c more robust. Includes Martin von Loewis's suggestion to set is_tripped after .tripped. | |||||
* | Backport of r59456:59458 from py3k to trunk | Christian Heimes | 2007-12-10 | 10 | -3/+1764 | |
| | | | | | | 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. | |||||
* | Remove a 2.2-ism. | Guido van Rossum | 2007-12-10 | 1 | -2/+1 | |
| | ||||||
* | Stupid save all didn't safe it all ... | Christian Heimes | 2007-12-10 | 1 | -5/+6 | |
| | ||||||
* | Added wide char api variants of getch and putch to msvcrt module. The wide ↵ | Christian Heimes | 2007-12-10 | 3 | -0/+104 | |
| | | | | char methods are required to fix #1578 in py3k. I figured out that they might be useful in 2.6, too. | |||||
* | Add DocXMLRPCServer test from GHOP task #136, written by Jeff Wheeler. | Georg Brandl | 2007-12-09 | 1 | -0/+152 | |
| | ||||||
* | Add Jeff Wheeler. | Georg Brandl | 2007-12-09 | 1 | -0/+1 | |
| | ||||||
* | Two fixes in DocXMLRPCServer: | Georg Brandl | 2007-12-09 | 1 | -28/+4 | |
| | | | | | | * remove parameter default that didn't make sense * properly escape values in output Thanks to Jeff Wheeler from GHOP! | |||||
* | Remove all tabs in that file. | Georg Brandl | 2007-12-09 | 1 | -5/+5 | |
| | ||||||
* | #1575: the Mac readme is now one level up. | Georg Brandl | 2007-12-09 | 1 | -1/+1 | |
| |