summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Bump version.v3.2rc2Georg Brandl2011-01-306-7/+7
|
* Update suspicious ignore file.Georg Brandl2011-01-301-0/+18
|
* Update pydoc topics.Georg Brandl2011-01-301-1/+1
|
* #10680: fix mutually exclusive arguments in argument groups.Georg Brandl2011-01-303-0/+44
|
* #10961: fix exception handling in new pydoc server code.Georg Brandl2011-01-303-99/+108
| | | | Patch by Ron Adam, reviewed by Eric Araujo.
* Clarify the status of get_string() and recommend using the binary API.Raymond Hettinger2011-01-301-2/+7
|
* #11069: fix the IDLE Stack Viewer, by not using "list" as a variable name.Georg Brandl2011-01-301-4/+4
| | | | Original patch by Brian Curtin, reviewed by me.
* Add entry for the mailbox fixups.Raymond Hettinger2011-01-301-0/+28
|
* #9124: mailbox now accepts binary input and uses binary internallyR. David Murray2011-01-304-141/+388
| | | | | | | | | | | | | | | | Although this patch contains API changes and is rather weighty for an RC phase, the mailbox module was essentially unusable without the patch since it would produce UnicodeErrors when handling non-ascii input at arbitrary and somewhat mysterious places, and any non-trivial amount of email processing will encounter messages with non-ascii bytes. The release manager approved the patch application. The changes allow binary input, and reject non-ASCII string input early with a useful message instead of failing mysteriously later. Binary is used internally for reading and writing the mailbox files. StringIO and Text file input are deprecated. Initial patch by Victor Stinner, validated and expanded by R. David Murray.
* List known build/install problems for OS X.Raymond Hettinger2011-01-301-1/+4
|
* Issue #10845: Improve compatibility between multiprocessing on Windows and ↵Nick Coghlan2011-01-302-1/+13
| | | | package, zipfile and directory execution (Reviewed by Antoine Pitrou and approved by Georg Brandl)
* Markup nits.Raymond Hettinger2011-01-301-3/+3
|
* Add section for http.client.Raymond Hettinger2011-01-301-6/+37
| | | | | Link to OS X build instructions. Add back issue references for datetime.
* Typos.Raymond Hettinger2011-01-301-2/+2
|
* Protect logging call against None argument (fixes #11045).Éric Araujo2011-01-292-1/+4
| | | | | | Initial patch by Kelsey Hightower. Approved by Raymond. A test was non-trivial to write without calling the private function directly, so we moved that for later.
* Issue #10939: Make Internaldate2tuple test more robust.Alexander Belopolsky2011-01-291-6/+8
|
* Issue 11052: Correct IDLE menu accelerators on Mac OS X for SaveNed Deily2011-01-292-2/+5
| | | | commands. (with release manager approval for 3.2rc2)
* Issue #11054: Allow Mac OS X installer builds to again work on 10.5 withNed Deily2011-01-293-18/+34
| | | | | | the system-provided Python. Also, properly guard a new Python 3 only installer build step so that build-installer.py can stay compatible with the 2.7 version. (with release manager approval for 3.2rc2)
* Issue #11053: Fix IDLE "Syntax Error" windows to behave as in 2.x,Ned Deily2011-01-292-2/+6
| | | | | preventing a confusing hung appearance on OS X with the windows obscured. (with release manager approval for 3.2rc2)
* Issue #10940: Workaround an IDLE hang on Mac OS X 10.6 when using theNed Deily2011-01-292-1/+10
| | | | | menu accelerators for Open Module, Go to Line, and New Indent Width. The accelerators still work but no longer appear in the menu items.
* Issue #10939: Fixed imaplib.Internaldate2tuple(). Thanks Joe PetersonAlexander Belopolsky2011-01-293-3/+15
| | | | for the report and the patch. Reviewed by Georg Brandl.
* fix reference to issue where the addition of select.PIPE_BUF was discussedGiampaolo Rodolà2011-01-291-1/+1
|
* Issue #10989: Fix a crash on SSLContext.load_verify_locations(None, True).Victor Stinner2011-01-293-1/+6
| | | | Patch reviewed by Antoine Pitrou, okayed by Georg Brandl.
* Issue #11302: missing type check on _string.formatter_field_name_split and ↵Eric Smith2011-01-292-0/+62
| | | | | | _string.formatter_parser caused crash. Originial patch by haypo, reviewed by me, okayed by Georg.
* Add entry for str.format_map().Raymond Hettinger2011-01-291-37/+56
| | | | Add bullet list and reference to documentation section.
* Added a placeholder for str.format_map, as discussed with Raymond. My prose ↵Eric Smith2011-01-281-0/+20
| | | | is horrible, some cleanup is required.
* Issue 10573: revert unittest docs to first / secondMichael Foord2011-01-282-36/+36
| | | | | Minor internal change to unittest.TestCase.assertCountEqual Reviewed by R. David Murray
* #11027: documented how to override SECTCREŁukasz Langa2011-01-281-0/+32
|
* More source linksRaymond Hettinger2011-01-2745-7/+161
|
* Issue 11008: docs updated to show versionadded for dictConfig.Vinay Sajip2011-01-271-0/+2
|
* More typical sample invocation of tarfile.Raymond Hettinger2011-01-271-1/+1
|
* Add missing attributions.Raymond Hettinger2011-01-271-2/+16
|
* Update todo list.Raymond Hettinger2011-01-271-1/+3
|
* Add an entry for tarfile.Raymond Hettinger2011-01-271-0/+32
|
* More source links.Raymond Hettinger2011-01-2720-3/+71
|
* Issue #11020: Command-line pyclbr was broken because of missing 2-to-3Raymond Hettinger2011-01-272-1/+4
| | | | | | conversion. (Patch reviewed by David Murray.)
* Issue #11018: fix a test to not be a no-op in test_bz2.Antoine Pitrou2011-01-261-1/+1
| | | | Found by Nadeem Vawda, reviewed by Brett.
* #11019: Make BytesGenerator handle Message with None body.R. David Murray2011-01-263-0/+12
| | | | Bug discovery and initial patch by Victor Stinner.
* Issue #11014: Make 'filter' argument in tarfile.Tarfile.add() into aRaymond Hettinger2011-01-264-15/+24
| | | | | | | keyword-only argument. The preceding positional argument was deprecated, so it made no sense to add filter as a positional argument. (Patch reviewed by Brian Curtin and Anthony Long.)
* Markup nits.Raymond Hettinger2011-01-261-18/+26
|
* Revert r88197. I'll refix correctly once there is a test.R. David Murray2011-01-261-5/+2
|
* Add a few imports to examples.Raymond Hettinger2011-01-261-13/+25
|
* Fix BytesGenerator._handle_text() if the message has no payload (None)Victor Stinner2011-01-261-2/+5
|
* fix import in email.message_from_binary_file()Victor Stinner2011-01-251-1/+1
| | | | Parser => BytesParser
* Issue #11004: Repair edge case in deque.count().Raymond Hettinger2011-01-253-4/+18
| | | | | | | | | (Reviewed by Georg Brandl.) Also made similar changes to deque.reverse() though this wasn't strictly necessary (the edge case cannot occur with two pointers moving to meet in the middle). Making the change in reverse() was more a matter of future-proofing.
* Tighten the restrictions on the test_sys test which triggers a fatal error whenBrett Cannon2011-01-251-2/+2
| | | | run with tracing turned on.
* Fix the description of PIPE_BUFAntoine Pitrou2011-01-252-4/+4
|
* Fix the doc for PIPE_BUFAntoine Pitrou2011-01-251-3/+5
|
* Typo.Raymond Hettinger2011-01-251-1/+1
|
* Add entries for select and site.Raymond Hettinger2011-01-251-0/+47
|