summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Add math.erfc and turtledemo.Raymond Hettinger2011-01-251-2/+17
|
* Typo.Raymond Hettinger2011-01-251-1/+1
|
* Nits.Raymond Hettinger2011-01-251-5/+5
|
* Add entry for the math module.Raymond Hettinger2011-01-251-0/+39
|
* Ignore the gdb.py file under OS X.Brett Cannon2011-01-251-0/+1
|
* another pretty crasher served up by pypyBenjamin Peterson2011-01-251-0/+20
|
* Add entry for io.BytesIO.getbuffer().Raymond Hettinger2011-01-241-0/+29
|
* #10974: IDLE no longer crashes if its recent files list includes filesNed Deily2011-01-242-2/+7
| | | | | | with non-ASCII characters in their path names. (with approval of release manager for 3.2rc2)
* Issue #11000 ast.parse parses source, not just expressions.Terry Reedy2011-01-242-6/+6
|
* Issue #9509: make argarse properly handle IOErrors raised by ↵Steven Bethard2011-01-243-15/+24
| | | | argparse.FileType. Approved by Georg in the tracker.
* Update last tix code example for 3.x, as already done for previous examples.Terry Reedy2011-01-241-2/+2
|
* Fix label syntax.Georg Brandl2011-01-242-2/+2
|
* Typo fix.Georg Brandl2011-01-241-1/+1
|
* #10960: fix 'stat' links, link to lstat from stat, general tidy of stat doc.R. David Murray2011-01-242-35/+57
| | | | | | | | | | | | Original patch by Michal Nowikowski, with some additions and wording fixes by me. I changed the wording from 'Performs a stat system call' to 'Performs the equivalent of a stat system call', since on Windows there are no stat/lstat system calls involved. I also extended Michal's breakout of the attributes into a list to the other paragraphs, and rearranged the order of the paragraphs in the 'stat' docs to make it flow better and put it in what I think is a more logical/useful order.
* Typos.Raymond Hettinger2011-01-241-2/+2
|
* Missing source links.Raymond Hettinger2011-01-244-0/+14
|
* Fix markup and add todo.Raymond Hettinger2011-01-241-1/+3
|
* Add entry for hash_info().Raymond Hettinger2011-01-241-0/+8
|
* Add section for urllib.parse.Raymond Hettinger2011-01-242-9/+52
|