| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Backed out r65069, pending fixing it in Windows. | Eric Smith | 2008-07-17 | 2 | -6/+5 |
| | | |||||
| * | Issue 3382: Make '%F' and float.__format__('F') convert results to upper case. | Eric Smith | 2008-07-17 | 2 | -5/+6 |
| | | |||||
| * | #3388: add a paragraph about using "with" for file objects. | Georg Brandl | 2008-07-16 | 1 | -0/+10 |
| | | |||||
| * | Complete issue 3083: add alternate (#) formatting to bin, oct, hex in ↵ | Eric Smith | 2008-07-16 | 1 | -2/+6 |
| | | | | | str.format(). | ||||
| * | Move label to correct heading. | Georg Brandl | 2008-07-15 | 1 | -3/+2 |
| | | |||||
| * | Issue #3008: add instance method float.hex and class method float.fromhex | Mark Dickinson | 2008-07-15 | 2 | -0/+74 |
| | | | | | to convert floats to and from hexadecimal strings respectively. | ||||
| * | Expand the multiprocessing section | Andrew M. Kuchling | 2008-07-14 | 1 | -10/+134 |
| | | |||||
| * | Typo fix | Andrew M. Kuchling | 2008-07-14 | 1 | -1/+1 |
| | | |||||
| * | Typo fix | Andrew M. Kuchling | 2008-07-14 | 1 | -1/+1 |
| | | |||||
| * | Typo fixes | Andrew M. Kuchling | 2008-07-14 | 1 | -3/+4 |
| | | |||||
| * | Add various items; move ctypes items into a subsection of their own | Andrew M. Kuchling | 2008-07-13 | 1 | -16/+40 |
| | | |||||
| * | Re-word | Andrew M. Kuchling | 2008-07-13 | 1 | -2/+2 |
| | | |||||
| * | Add turtle into the module index. | Martin v. Löwis | 2008-07-13 | 1 | -0/+4 |
| | | |||||
| * | Correct a couple of errors in the updated catch_warning documentation (the ↵ | Nick Coghlan | 2008-07-13 | 1 | -2/+2 |
| | | | | | Py3k version was fixed before being checked in) | ||||
| * | Make test.test_support.catch_warnings more robust as discussed on ↵ | Nick Coghlan | 2008-07-13 | 1 | -9/+24 |
| | | | | | python-dev. Also add explicit tests for itto test_warnings. | ||||
| * | Fixed typo. | Alexandre Vassalotti | 2008-07-12 | 1 | -1/+1 |
| | | |||||
| * | fix various doc typos #3320 | Benjamin Peterson | 2008-07-12 | 20 | -35/+35 |
| | | |||||
| * | Add cautionary note on the use of PySequence_Fast_ITEMS. | Raymond Hettinger | 2008-07-11 | 1 | -0/+4 |
| | | |||||
| * | Doc that robotparse has been renamed urllib.robotparser in Python 3.0. | Brett Cannon | 2008-07-11 | 1 | -0/+6 |
| | | |||||
| * | Doc that urlparse is named urllib.parse in Python 3.0. | Brett Cannon | 2008-07-11 | 1 | -0/+6 |
| | | |||||
| * | Document the fact that urllib2 spans multiple modules with new names in Python | Brett Cannon | 2008-07-11 | 1 | -0/+7 |
| | | | | | 3.0. | ||||
| * | Added garbage collector overhead and optional default return value to | Robert Schuppenies | 2008-07-10 | 1 | -2/+9 |
| | | | | | sys.getsizeof. | ||||
| * | Add missing ABCs to list. | Georg Brandl | 2008-07-08 | 1 | -36/+44 |
| | | |||||
| * | Fix example to match text | Andrew M. Kuchling | 2008-07-07 | 1 | -1/+1 |
| | | |||||
| * | Add two items; rewrap paragraph | Andrew M. Kuchling | 2008-07-06 | 1 | -3/+27 |
| | | |||||
| * | Wording fix | Andrew M. Kuchling | 2008-07-06 | 1 | -1/+1 |
| | | |||||
| * | Fix opensearch template. | Georg Brandl | 2008-07-06 | 1 | -14/+4 |
| | | |||||
| * | - Issue #2862: Make int and float freelist management consistent with other | Gregory P. Smith | 2008-07-06 | 4 | -24/+12 |
| | | | | | | freelists. Changes their CompactFreeList apis into ClearFreeList apis and calls them via gc.collect(). | ||||
| * | #2663: support an *ignore* argument to shutil.copytree(). Patch by Tarek Ziade. | Georg Brandl | 2008-07-05 | 1 | -12/+66 |
| | | | | | This is a new feature, but Barry authorized adding it in the beta period. | ||||
| * | Give the pickle special methods a signature. | Georg Brandl | 2008-07-04 | 1 | -118/+117 |
| | | |||||
| * | let the term be linked | Benjamin Peterson | 2008-07-03 | 1 | -2/+2 |
| | | |||||
| * | lowercase glossary term | Benjamin Peterson | 2008-07-03 | 1 | -1/+1 |
| | | |||||
| * | Patch #1622: Correct interpretation of various ZIP header fields. | Martin v. Löwis | 2008-07-03 | 1 | -1/+7 |
| | | | | | | | | | | Also fixes - Issue #1526: Allow more than 64k files to be added to Zip64 file. - Issue #1746: Correct handling of zipfile archive comments (previously archives with comments over 4k were flagged as invalid). Allow writing Zip files with archives by setting the 'comment' attribute of a ZipFile. | ||||
| * | Tweak wording | Andrew M. Kuchling | 2008-07-03 | 1 | -3/+3 |
| | | |||||
| * | Issue #449227: Now with the rlcompleter module, callable objects are | Facundo Batista | 2008-07-02 | 1 | -3/+3 |
| | | | | | added a '(' when completed. | ||||
| * | Handle urllib's renaming for Python 3.0: | Brett Cannon | 2008-07-02 | 1 | -0/+11 |
| | | | | | | | | | * Deprecate urllib.urlopen() in favor of urllib2.urlopen() for 3.0. * Update docs to mention split/rename of the module and deprecation of urlopen(). Changes to lib2to3 are in a separate commit. Work is for issue #2885. | ||||
| * | add ABC to the glossary | Benjamin Peterson | 2008-07-01 | 2 | -7/+16 |
| | | |||||
| * | #1410739: add a footnote about "is" and "unusual" behavior. | Georg Brandl | 2008-07-01 | 1 | -1/+5 |
| | | |||||
| * | #1523853: add note about fread(). | Georg Brandl | 2008-07-01 | 1 | -0/+4 |
| | | |||||
| * | #3216: fix Execute's parameter description. | Georg Brandl | 2008-07-01 | 1 | -5/+4 |
| | | |||||
| * | Add a link to PEP 324. | Georg Brandl | 2008-07-01 | 1 | -0/+4 |
| | | |||||
| * | write a short little section for multiprocessing; it still needs help | Benjamin Peterson | 2008-07-01 | 1 | -1/+15 |
| | | |||||
| * | reinstate the ending backtick. thanks Nick :) | Benjamin Peterson | 2008-06-29 | 1 | -1/+1 |
| | | |||||
| * | rewrap | Benjamin Peterson | 2008-06-28 | 1 | -5/+5 |
| | | |||||
| * | various SSL fixes; issues 1251, 3162, 3212 | Bill Janssen | 2008-06-28 | 1 | -1/+33 |
| | | |||||
| * | fix typo | Benjamin Peterson | 2008-06-28 | 1 | -6/+6 |
| | | |||||
| * | edit multiprocessing docs | Benjamin Peterson | 2008-06-27 | 1 | -90/+83 |
| | | |||||
| * | Fix whitespace in example code. | Raymond Hettinger | 2008-06-27 | 1 | -2/+2 |
| | | |||||
| * | Issue #3197: rework documentation for fractions module. | Mark Dickinson | 2008-06-27 | 1 | -33/+59 |
| | | |||||
| * | add a htmlview directive | Benjamin Peterson | 2008-06-26 | 1 | -0/+2 |
| | | |||||
