Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue 3848: document the fact that epoll register raises an IOError if | R. David Murray | 2009-05-31 | 2 | -0/+33 |
| | | | | | an fd is registered twice, and add some additional epoll tests. Patch by Christian Heimes. | ||||
* | Uninitialized file type would lead to __exit__ lookup failure when site.py | Antoine Pitrou | 2009-05-31 | 1 | -0/+3 |
| | | | | tries to read *.pth files on interpreter startup. | ||||
* | __enter__ and __exit__ must be on the class | Benjamin Peterson | 2009-05-31 | 1 | -4/+12 |
| | |||||
* | remove function import | Benjamin Peterson | 2009-05-31 | 1 | -1/+1 |
| | |||||
* | Issue #6152: New option '-j'/'--multiprocess' for regrtest allows running | Antoine Pitrou | 2009-05-31 | 4 | -59/+153 |
| | | | | regression tests in parallel, shortening the total runtime. | ||||
* | Fix markup. | Georg Brandl | 2009-05-31 | 1 | -6/+3 |
| | |||||
* | fix signature | Benjamin Peterson | 2009-05-31 | 1 | -1/+1 |
| | |||||
* | Update ACKS | Antoine Pitrou | 2009-05-30 | 1 | -0/+1 |
| | |||||
* | The test for #5330 wasn't correct. | Antoine Pitrou | 2009-05-30 | 1 | -1/+1 |
| | |||||
* | Issue #5330: C functions called with keyword arguments were not reported by | Antoine Pitrou | 2009-05-30 | 4 | -2/+40 |
| | | | | the various profiling modules (profile, cProfile). Patch by Hagen Fürstenau. | ||||
* | Add more examples to the ipaddr documentation. | Gregory P. Smith | 2009-05-30 | 1 | -2/+90 |
| | |||||
* | Rewrap a few long lines. | Georg Brandl | 2009-05-30 | 1 | -35/+38 |
| | |||||
* | Fix markup problem. | Georg Brandl | 2009-05-30 | 1 | -1/+1 |
| | |||||
* | Fix some more small markup problems. | Georg Brandl | 2009-05-30 | 1 | -5/+5 |
| | |||||
* | Use preferred form of raising exceptions. | Georg Brandl | 2009-05-30 | 1 | -1/+1 |
| | |||||
* | #6146: fix markup bug. | Georg Brandl | 2009-05-30 | 1 | -1/+1 |
| | |||||
* | no fdatasync on macos | Benjamin Peterson | 2009-05-30 | 1 | -0/+3 |
| | |||||
* | add with statements | Benjamin Peterson | 2009-05-29 | 1 | -0/+20 |
| | |||||
* | Move the basic examples section back to the beginning. | Raymond Hettinger | 2009-05-29 | 1 | -63/+67 |
| | |||||
* | Add test discovery to unittest. Issue 6001. | Michael Foord | 2009-05-29 | 4 | -22/+630 |
| | |||||
* | Issue 6141: document that the first item of args is still the | R. David Murray | 2009-05-29 | 1 | -3/+6 |
| | | | | command name even when executable is specified. | ||||
* | Refactor test parameterization to resolve update timing problem. | R. David Murray | 2009-05-29 | 1 | -14/+13 |
| | |||||
* | Issue #4873: Fix resource leaks in error cases of pwd and grp. | Martin v. Löwis | 2009-05-29 | 3 | -1/+4 |
| | |||||
* | Fixed #6131: test_modulefinder leaked when run after test_distutils | Tarek Ziadé | 2009-05-29 | 5 | -10/+11 |
| | |||||
* | Issue 5982: Classmethod and staticmethod expose wrapped function with __func__. | Raymond Hettinger | 2009-05-29 | 3 | -3/+29 |
| | |||||
* | Fix nearly all compilation warnings under Apple gcc-4.0. Tested with OPT="-g | Jeffrey Yasskin | 2009-05-29 | 5 | -26/+4 |
| | | | | | | -Wall -Wstrict-prototypes -Werror" in both --with-pydebug mode and --without. There's still a batch of non-prototype warnings in Xlib.h that I don't know how to fix. | ||||
* | Deprecate contextlib.nested(). The with-statement now provides this ↵ | Raymond Hettinger | 2009-05-29 | 4 | -2/+11 |
| | | | | functionality directly. | ||||
* | Issue 5150: Add rstrip() option to IDLE's format menu. | Raymond Hettinger | 2009-05-29 | 3 | -0/+38 |
| | |||||
* | Backport smtplib auth tests from r72990. | R. David Murray | 2009-05-28 | 1 | -22/+75 |
| | |||||
* | using 'tar' then 'gzip' in the test, because 'tar -czf' is not supported ↵ | Tarek Ziadé | 2009-05-28 | 1 | -3/+7 |
| | | | | under some platforms | ||||
* | Fixed #6048: Distutils uses the tarfile module instead of the tar command now | Tarek Ziadé | 2009-05-28 | 3 | -25/+148 |
| | |||||
* | explicitly close files | Philip Jenvey | 2009-05-28 | 3 | -30/+29 |
| | |||||
* | further hint to where the open docs really are | Philip Jenvey | 2009-05-28 | 1 | -1/+1 |
| | |||||
* | explicitly close the file, merged from py3k | Philip Jenvey | 2009-05-28 | 1 | -1/+4 |
| | |||||
* | switch library reference and language reference | Benjamin Peterson | 2009-05-28 | 1 | -2/+2 |
| | |||||
* | fix issue #6121 by stripping spaces from the argument in the 'help' | R. David Murray | 2009-05-27 | 3 | -0/+12 |
| | | | | function. | ||||
* | plug ref leak | Benjamin Peterson | 2009-05-27 | 1 | -4/+7 |
| | |||||
* | correctly handle descrs with __missing__ | Benjamin Peterson | 2009-05-27 | 2 | -7/+18 |
| | |||||
* | Fix field name conflicts for named tuples. | Raymond Hettinger | 2009-05-27 | 3 | -13/+53 |
| | |||||
* | Fixes issue 6110 | Ronald Oussoren | 2009-05-26 | 1 | -1/+2 |
| | |||||
* | teach the peepholer about SETUP_WITH | Benjamin Peterson | 2009-05-26 | 1 | -0/+3 |
| | |||||
* | #6112: list.remove raises ValueError, not RuntimeError. | Georg Brandl | 2009-05-26 | 2 | -2/+2 |
| | |||||
* | Issue 5794: fix cPickle's unpickling of recursive tuples. | Collin Winter | 2009-05-26 | 3 | -10/+24 |
| | |||||
* | Allow multiple context managers in one with statement, as proposed | Georg Brandl | 2009-05-25 | 11 | -70/+215 |
| | | | | | | | in http://codereview.appspot.com/53094 and accepted by Guido. The construct is transformed into multiple With AST nodes so that there should be no problems with the semantics. | ||||
* | Make assertSequenceEqual error messages less cryptic, particularly for ↵ | Michael Foord | 2009-05-25 | 1 | -25/+32 |
| | | | | nested sequences. | ||||
* | fix error handling | Benjamin Peterson | 2009-05-25 | 1 | -3/+4 |
| | |||||
* | take into account the fact that SETUP_WITH pushes a finally block | Benjamin Peterson | 2009-05-25 | 1 | -1/+1 |
| | |||||
* | add a SETUP_WITH opcode | Benjamin Peterson | 2009-05-25 | 9 | -66/+86 |
| | | | | | It speeds up the with statement and correctly looks up the special methods involved. | ||||
* | Issue 5670: special-case pickling of dicts. This nearly doubles the ↵ | Collin Winter | 2009-05-25 | 1 | -9/+78 |
| | | | | performance of dict pickling in cPickle. | ||||
* | handle errors from _PyObject_LookupSpecial when __get__ fails | Benjamin Peterson | 2009-05-25 | 5 | -8/+40 |
| |