| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Issue #4445: save 3 bytes (on average, on a typical machine) per | Mark Dickinson | 2008-12-05 | 1 | -2/+2 |
|
|
* | #4529: fix parser's validation for try-except-finally statements. | Georg Brandl | 2008-12-05 | 1 | -0/+10 |
|
|
* | #4544: add `dedent` to textwrap.__all__. | Georg Brandl | 2008-12-05 | 1 | -1/+1 |
|
|
* | #4458: recognize "-" as an argument, not a malformed option in gnu_getopt(). | Georg Brandl | 2008-12-05 | 2 | -1/+6 |
|
|
* | rename the new check_call_output to check_output. its less ugly. | Gregory P. Smith | 2008-12-05 | 2 | -22/+22 |
|
|
* | Took Nick Coghlan's advice about importing warnings globally in logging, to a... | Vinay Sajip | 2008-12-04 | 1 | -3/+1 |
|
|
* | Adds a subprocess.check_call_output() function to return the output from a | Gregory P. Smith | 2008-12-04 | 2 | -12/+94 |
|
|
* | Issue #1055234: cgi.parse_header(): Fixed parsing of header parameters to | Fred Drake | 2008-12-04 | 2 | -3/+41 |
|
|
* | Issue #4384: Added logging integration with warnings module using captureWarn... | Vinay Sajip | 2008-12-03 | 2 | -4/+86 |
|
|
* | Backport r67478 | Raymond Hettinger | 2008-12-03 | 1 | -0/+2 |
|
|
* | Send HTTP headers and message body in a single send() call. | Jeremy Hylton | 2008-11-29 | 2 | -27/+46 |
|
|
* | Reflow long lines. | Jeremy Hylton | 2008-11-29 | 1 | -5/+10 |
|
|
* | Merged revisions 67384,67386-67387,67389-67390,67392,67399-67400,67403-67405,... | Benjamin Peterson | 2008-11-28 | 15 | -86/+104 |
|
|
* | issue4238: bsd support for cpu_count | Jesse Noller | 2008-11-28 | 1 | -1/+1 |
|
|
* | Fixed issue ##3741: DISTUTILS_USE_SDK set causes msvc9compiler.py to raise an... | Christian Heimes | 2008-11-28 | 1 | -1/+1 |
|
|
* | Merged revisions 67183,67191,67371 via svnmerge from | Benjamin Peterson | 2008-11-25 | 3 | -10/+32 |
|
|
* | Add unittests that verify documented behavior of public methods in Transport | Jeremy Hylton | 2008-11-24 | 1 | -1/+86 |
|
|
* | #4396 make the parser module correctly validate the with syntax | Benjamin Peterson | 2008-11-24 | 1 | -0/+4 |
|
|
* | raise a better error | Benjamin Peterson | 2008-11-23 | 1 | -1/+1 |
|
|
* | Fix typo. | Georg Brandl | 2008-11-22 | 1 | -1/+1 |
|
|
* | backport r67325: make FileIO.mode always contain 'b' | Benjamin Peterson | 2008-11-22 | 2 | -9/+9 |
|
|
* | don't segfault when \N escapes are used and unicodedata fails to load | Benjamin Peterson | 2008-11-21 | 1 | -2/+25 |
|
|
* | #4363: Let uuid.uuid1() and uuid.uuid4() run even if the ctypes module is not... | Amaury Forgeot d'Arc | 2008-11-21 | 1 | -2/+2 |
|
|
* | Fixed issue #4233. | Amaury Forgeot d'Arc | 2008-11-20 | 1 | -0/+24 |
|
|
* | backport r67300 | Benjamin Peterson | 2008-11-20 | 2 | -9/+47 |
|
|
* | oops! didn't mean to disable that test | Benjamin Peterson | 2008-11-20 | 1 | -1/+1 |
|
|
* | make sure that bytearray methods return a new bytearray even if there is no c... | Benjamin Peterson | 2008-11-19 | 1 | -0/+10 |
|
|
* | Fix for issue 4332 in trunk. | Josiah Carlson | 2008-11-19 | 1 | -1/+1 |
|
|
* | Issue #4116: Resolve member name conflict in ScrolledCanvas.__init__ | Martin v. Löwis | 2008-11-19 | 1 | -2/+2 |
|
|
* | patch from issue 1108 | Skip Montanaro | 2008-11-19 | 1 | -2/+2 |
|
|
* | #4317: Fix an Array Bounds Read in imageop.rgb2rgb8. | Amaury Forgeot d'Arc | 2008-11-18 | 1 | -1/+2 |
|
|
* | when __getattr__ is a descriptor, call it correctly; fixes #4230 | Benjamin Peterson | 2008-11-17 | 1 | -0/+40 |
|
|
* | The docs for httplib.HTTPConnection.putheader() have claimed for quite a while | Brett Cannon | 2008-11-15 | 1 | -6/+3 |
|
|
* | Merged revisions 66985,67170,67173,67177-67179 via svnmerge from | Benjamin Peterson | 2008-11-10 | 5 | -12/+44 |
|
|
* | fix comment | Benjamin Peterson | 2008-11-09 | 1 | -3/+2 |
|
|
* | check for assignment to __debug__ during AST generation | Benjamin Peterson | 2008-11-08 | 1 | -10/+8 |
|
|
* | move a FileIO test to test_fileio | Benjamin Peterson | 2008-11-03 | 2 | -8/+9 |
|
|
* | Issue #3774: Fixed an error when create a Tkinter menu item without command | Hirokazu Yamamoto | 2008-11-03 | 1 | -11/+13 |
|
|
* | #4048 make the parser module accept relative imports as valid | Benjamin Peterson | 2008-11-03 | 1 | -0/+2 |
|
|
* | make sure the parser flags and passed onto the compiler | Benjamin Peterson | 2008-10-31 | 2 | -0/+14 |
|
|
* | Issue #4237: io.FileIO() was raising invalid warnings caused by insufficient ... | Christian Heimes | 2008-10-30 | 1 | -0/+7 |
|
|
* | Issue #4176: Pickle would crash the interpreter when a __reduce__ function | Amaury Forgeot d'Arc | 2008-10-30 | 1 | -0/+23 |
|
|
* | Fixed a modulefinder crash on certain relative imports. | Thomas Heller | 2008-10-30 | 2 | -1/+20 |
|
|
* | Fix one of the tests: it relied on being present in an "output test" in | Armin Rigo | 2008-10-28 | 1 | -7/+3 |
|
|
* | add forgotten test for r67030 | Benjamin Peterson | 2008-10-26 | 1 | -0/+21 |
|
|
* | fix __future__ imports when multiple features are given | Benjamin Peterson | 2008-10-26 | 1 | -2/+6 |
|
|
* | give a py3k warning when 'nonlocal' is used as a variable name | Benjamin Peterson | 2008-10-25 | 1 | -41/+23 |
|
|
* | Issue #4183: Some tests didn't run with pickle.HIGHEST_PROTOCOL. | Hirokazu Yamamoto | 2008-10-23 | 2 | -3/+3 |
|
|
* | fix #4150: pdb's up command didn't work for generators in post-mortem | Benjamin Peterson | 2008-10-22 | 2 | -6/+4 |
|
|
* | return ArgInfo from inspect.getargvalues #4092 | Benjamin Peterson | 2008-10-21 | 1 | -1/+1 |
|
|