Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #5277: Fix quote counting when parsing RFC 2231 encoded parameters. | R. David Murray | 2010-04-13 | 1 | -0/+2 |
| | |||||
* | Issue #7585: use tab between components in unified and context diff headers. | R. David Murray | 2010-04-12 | 1 | -0/+1 |
| | | | | | | | | | | | | Instead of spaces between the filename and date (or whatever the string is that follows the filename, if any) use tabs. This is what the unix 'diff' command does, for example, and difflib was intended to follow the 'standard' way of doing diffs. This improves compatibility with patch tools. The docs and examples are also changed to recommended that the date format used be the ISO 8601 format, which is what modern diff tools emit by default. Patch by Anatoly Techtonik. | ||||
* | Issue #8032: For gdb7, a python-gdb.py file is added to the build, | Martin v. Löwis | 2010-04-01 | 1 | -0/+1 |
| | | | | allowing to use advanced gdb features when debugging Python. | ||||
* | Issue #8248: Add some tests for the bool type. Patch by Gregory Nofi. | Antoine Pitrou | 2010-03-30 | 1 | -0/+1 |
| | |||||
* | fix ACKS: alphabetic order and UTF-8 | Florent Xicluna | 2010-03-30 | 1 | -3/+3 |
| | |||||
* | Issue #7143: get_payload used to strip any trailing newline from a | R. David Murray | 2010-03-08 | 1 | -0/+1 |
| | | | | | | | | | | base64 transfer-encoded payload *after* decoding it; it no longer does. email had a special method in utils, _bdecode, specifically to do this, so it must have served a purpose at some point, yet it is clearly wrong per RFC. Fixed with Barry's approval, but no backport. Email package minor version number is bumped, now version 4.0.1. Patch by Joaquin Cuenca Abela. | ||||
* | Issue 6292: for the moment at least, the test suite passes if run | R. David Murray | 2010-02-23 | 1 | -0/+1 |
| | | | | | | with -OO. Tests requiring docstrings are skipped. Patch by Brian Curtin, thanks to Matias Torchinsky for helping review and improve the patch. | ||||
* | * fix issue#7476 | Jack Diederich | 2010-02-22 | 1 | -0/+1 |
| | |||||
* | Issue #7633: Context method in the decimal module (with the exception | Mark Dickinson | 2010-02-18 | 1 | -0/+1 |
| | | | | | | of the 'canonical' and 'is_canonical' methods) now consistently accept integer arguments wherever a Decimal instance is accepted. Thanks Juan José Conti for the patch. | ||||
* | Issue 5754: tweak shelve doc wording to make it clearer that even when | R. David Murray | 2010-02-11 | 1 | -0/+1 |
| | | | | | | | writeback=True values are written to the backing store when assigned to the shelf. Add test to confirm that this happens. Doc patch and added test by Robert Lehmann. I also fixed the cross references to the sync and close methods. | ||||
* | Issue #2746: Don't escape ampersands and angle brackets ("&", "<", ">") | Antoine Pitrou | 2010-02-09 | 1 | -0/+1 |
| | | | | | | in XML processing instructions and comments. These raw characters are allowed by the XML specification, and are necessary when outputting e.g. PHP code in a processing instruction. Patch by Neil Muller. | ||||
* | Issue #5677: Explicitly forbid write operations on read-only file objects, | Antoine Pitrou | 2010-02-05 | 1 | -0/+1 |
| | | | | | | and read operations on write-only file objects. On Windows, the system C library would return a bogus result; on Solaris, it was possible to crash the interpreter. Patch by Stefan Krah. | ||||
* | Add Chris Rebert to ACKS for issue 6760 Popen doc improvements. | R. David Murray | 2010-02-04 | 1 | -0/+1 |
| | |||||
* | - Issue #6939: Fix file I/O objects in the `io` module to keep the original | Antoine Pitrou | 2010-01-31 | 1 | -0/+1 |
| | | | | | | file position when calling `truncate()`. It would previously change the file position to the given argument, which goes against the tradition of ftruncate() and other truncation APIs. Patch by Pascal Chambon. | ||||
* | Issue #6963: Added maxtasksperchild argument to multiprocessing.Pool | Jesse Noller | 2010-01-27 | 1 | -0/+1 |
| | |||||
* | fix an UnboundLocalError when the release file is empty #7773 | Benjamin Peterson | 2010-01-25 | 1 | -0/+1 |
| | |||||
* | Add ACKS entry for r77472. | Antoine Pitrou | 2010-01-13 | 1 | -0/+1 |
| | |||||
* | Credit Nir Aides for r77288 | Antoine Pitrou | 2010-01-03 | 1 | -0/+1 |
| | |||||
* | Add Marcos Donolo for work on issue 7534 patch. | Mark Dickinson | 2009-12-30 | 1 | -0/+1 |
| | |||||
* | Fix the transient refleaks in test_zipimport_support. | Antoine Pitrou | 2009-12-08 | 1 | -0/+1 |
| | | | | Diagnosis and original patch by Florent Xicluna (flox). | ||||
* | Add Christoph Gohlke, for the issue 4120 work. | Martin v. Löwis | 2009-12-03 | 1 | -0/+1 |
| | |||||
* | Issue #1515: Enable use of deepcopy() with instance methods. Patch by ↵ | Antoine Pitrou | 2009-11-28 | 1 | -0/+1 |
| | | | | Robert Collins. | ||||
* | Add ACKS entry for Pablo Mouzo | Antoine Pitrou | 2009-11-27 | 1 | -0/+1 |
| | |||||
* | Issue #7211: Allow 64-bit values for the `ident` and `data` fields of kevent | Antoine Pitrou | 2009-11-04 | 1 | -0/+1 |
| | | | | | | objects on 64-bit systems. Patch by Michael Broghton. I will revert this checkin if it causes problems on our BSD buildbots. | ||||
* | Acknowledge Ned Deily (extensive bug hunting and testing on OS X) | Mark Dickinson | 2009-10-24 | 1 | -0/+1 |
| | |||||
* | Issue #1722344: threading._shutdown() is now called in Py_Finalize(), which | Antoine Pitrou | 2009-10-20 | 1 | -0/+1 |
| | | | | | fixes the problem of some exceptions being thrown at shutdown when the interpreter is killed. Patch by Adam Olsen. | ||||
* | Issue #7084: Fix a (very unlikely) crash when printing a list from one | Antoine Pitrou | 2009-10-11 | 1 | -0/+1 |
| | | | | thread, and mutating it from another one. Patch by Scott Dial. | ||||
* | Issue #7082: When falling back to the MIME 'name' parameter, the | R. David Murray | 2009-10-09 | 1 | -0/+1 |
| | | | | | | correct place to look for it is the Content-Type header. Patch by Darren Worrall. | ||||
* | Add Anders Chrigstrom to Misc/ACKS for his work on unicodedata. | Amaury Forgeot d'Arc | 2009-10-06 | 1 | -0/+1 |
| | |||||
* | Issue #6790: Make it possible again to pass an `array.array` to | Antoine Pitrou | 2009-09-29 | 1 | -0/+1 |
| | | | | `httplib.HTTPConnection.send`. Patch by Kirk McDonald. | ||||
* | When range checking was added to time.strftime() a check was placed on tm_isdst | Brett Cannon | 2009-09-22 | 1 | -0/+1 |
| | | | | | | | | | | | to make sure it fell within [-1, 1] just in case someone implementing strftime() in libc was stupid enough to assume this. Turns out, though, some OSs (e.g. zOS) are stupid enough to use values outside of this range for time structs created by the system itself. So instead of throwing a ValueError, tm_isdst is now normalized before being passed to strftime(). Fixes issue #6823. Thanks Robert Shapiro for diagnosing the problem and contributing an initial patch. | ||||
* | add keyword arguments support to str/unicode encode and decode #6300 | Benjamin Peterson | 2009-09-18 | 1 | -0/+1 |
| | |||||
* | Add Gawain Bolton to Misc/ACKS for his work on base 10 integer -> string ↵ | Mark Dickinson | 2009-09-18 | 1 | -0/+1 |
| | | | | optimizations. | ||||
* | Restore alphabetic order. | Georg Brandl | 2009-08-23 | 1 | -1/+1 |
| | |||||
* | better col_offsets for "for" statements with tuple unpacking #6704 | Benjamin Peterson | 2009-08-15 | 1 | -0/+1 |
| | | | | Patch from Frank Wierzbicki. | ||||
* | Expat could crash if given the wrong kind of input by never stopping its | Brett Cannon | 2009-08-13 | 1 | -1/+2 |
| | | | | | | tokenizing step. Thanks to Ivan Krstić for the patch. | ||||
* | Fix issue 4660: spurious task_done errors in multiprocessing, remove doc ↵ | Jesse Noller | 2009-08-06 | 1 | -0/+1 |
| | | | | note for from_address | ||||
* | Issue #6619: Remove duplicate 'isgenerator' function from inspect module. | Mark Dickinson | 2009-08-02 | 1 | -0/+1 |
| | | | | Thanks Vincent Legoll. | ||||
* | Add Case Van Horsen to Misc/ACKS, for fractions module patches and other work | Mark Dickinson | 2009-07-18 | 1 | -0/+1 |
| | |||||
* | Issue 6433: multiprocessing.pool.map hangs on empty list | Jesse Noller | 2009-07-16 | 1 | -0/+1 |
| | |||||
* | fix another name | Benjamin Peterson | 2009-07-12 | 1 | -1/+1 |
| | |||||
* | change encoding to utf-8 | Benjamin Peterson | 2009-07-12 | 1 | -25/+25 |
| | |||||
* | fix Tarek's name | Benjamin Peterson | 2009-07-12 | 1 | -1/+1 |
| | |||||
* | add Joe | Benjamin Peterson | 2009-07-12 | 1 | -1/+2 |
| | |||||
* | Resolves issues 5155, 5313, 5331 - bad file descriptor error with processes ↵ | Jesse Noller | 2009-06-30 | 1 | -0/+3 |
| | | | | in processes | ||||
* | Fix issue 5230 by having pydoc's safeimport check to see if the import | R. David Murray | 2009-06-23 | 1 | -0/+1 |
| | | | | | error was thrown from itself in order to decide if the module can't be found. Thanks to Lucas Prado Melo for collaborating on the fix and tests. | ||||
* | Update ACKS | Antoine Pitrou | 2009-05-30 | 1 | -0/+1 |
| | |||||
* | Issue #3585: Add pkg-config support. | Antoine Pitrou | 2009-05-24 | 1 | -0/+1 |
| | | | | | It creates a python-2.7.pc file and a python.pc symlink in the $(LIBDIR)/pkgconfig directory. Patch by Clinton Roy. | ||||
* | reorder name | Benjamin Peterson | 2009-05-23 | 1 | -1/+1 |
| | |||||
* | support building with subversion 1.7 #6094 | Benjamin Peterson | 2009-05-23 | 1 | -0/+1 |
| |