Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove test.test_support.guard_warnings_filter. | Brett Cannon | 2007-08-14 | 1 | -6/+0 |
| | | | | | | | | test.test_support.catch_warning is more full-featured and provides the same functionality. Since guard_warnings_filter was added in 2.6 there is no backwards-compatibility issues. | ||||
* | Clarify the docs for TransientResource. | Brett Cannon | 2007-08-14 | 1 | -4/+5 |
| | |||||
* | Revert the fix for #1548891, it broke backwards compatibility with arbitrary ↵ | Georg Brandl | 2007-08-08 | 1 | -0/+4 |
| | | | | | | read buffers. Fixes #1730114. | ||||
* | Bug #1769002: fix a now-wrong sentence in the tutorial. | Georg Brandl | 2007-08-07 | 1 | -7/+6 |
| | |||||
* | Patch #1765839: add link to https+proxy urllib2 opener. | Georg Brandl | 2007-08-06 | 1 | -1/+6 |
| | |||||
* | - Allow Emacs 22 for building the documentation in info format. | Matthias Klose | 2007-08-02 | 1 | -2/+2 |
| | |||||
* | try-except-finally is new in 2.5. | Georg Brandl | 2007-07-29 | 1 | -1/+3 |
| | |||||
* | Clarify PEP 343 description. | Georg Brandl | 2007-07-29 | 1 | -9/+18 |
| | |||||
* | tabs, newlines and crs are valid XML characters. | Georg Brandl | 2007-07-26 | 1 | -1/+2 |
| | |||||
* | Fix an incompatibility between the -i and -m command line switches as ↵ | Nick Coghlan | 2007-07-24 | 1 | -3/+5 |
| | | | | reported on python-dev by PJE - runpy.run_module now leaves any changes it makes to the sys module intact after the function terminates | ||||
* | Add description for wave.setcomptype() values | Georg Brandl | 2007-07-18 | 1 | -0/+2 |
| | |||||
* | Use "Unix" as platform name, not "UNIX". | Georg Brandl | 2007-07-18 | 1 | -1/+1 |
| | |||||
* | Typo fix | Andrew M. Kuchling | 2007-07-14 | 1 | -1/+1 |
| | |||||
* | Clarify webbrowser.open description. | Georg Brandl | 2007-07-14 | 1 | -1/+1 |
| | |||||
* | Bug #1753406: missing \versionadded for subprocess.check_call. | Georg Brandl | 2007-07-14 | 1 | -0/+2 |
| | |||||
* | Correct the docs for takewhile(). Improve the recipe for nth(). Should be ↵ | Raymond Hettinger | 2007-07-13 | 1 | -3/+3 |
| | | | | backported | ||||
* | Patch #1675424: Added tests for uncovered code in the zipfile module. | Georg Brandl | 2007-07-12 | 1 | -14/+32 |
| | | | | | The KeyError raised by Zipfile.getinfo for nonexistent names now has a descriptive message. | ||||
* | Bug #1637365: add subsection about "__name__ == __main__" to the | Georg Brandl | 2007-07-12 | 1 | -0/+38 |
| | | | | Python tutorial. | ||||
* | Patch #1731659: improve time.strptime docs. | Georg Brandl | 2007-07-12 | 1 | -9/+17 |
| | |||||
* | Remove duplicate sentence from alarm() doc. | Georg Brandl | 2007-07-02 | 1 | -2/+1 |
| | |||||
* | Document smtp.SMTPAuthenticationError. | Georg Brandl | 2007-06-30 | 1 | -0/+4 |
| | |||||
* | Fix a variable name in winreg docs. | Georg Brandl | 2007-06-27 | 1 | -1/+1 |
| | |||||
* | Bug #1742901: document None behavior of shlex.split. | Georg Brandl | 2007-06-25 | 1 | -0/+3 |
| | |||||
* | Bug #1739115: make shutil.rmtree docs clear wrt. file deletion. | Georg Brandl | 2007-06-19 | 1 | -5/+6 |
| | |||||
* | Added missing \versionchanged tag for the new exclude | Lars Gustäbel | 2007-06-18 | 1 | -0/+1 |
| | | | | parameter. | ||||
* | Added exclude keyword argument to the TarFile.add() method. | Lars Gustäbel | 2007-06-18 | 1 | -3/+6 |
| | |||||
* | Revert last change for SF #1738754, there's no print in there. | Neal Norwitz | 2007-06-18 | 1 | -1/+1 |
| | |||||
* | SF #1738754, remove extra backslash in string | Neal Norwitz | 2007-06-18 | 1 | -1/+1 |
| | |||||
* | SF #1738670, make example in doc work | Neal Norwitz | 2007-06-17 | 1 | -0/+6 |
| | |||||
* | Add missing \versionadded. | Georg Brandl | 2007-06-16 | 1 | -0/+1 |
| | |||||
* | Add a word | Andrew M. Kuchling | 2007-06-15 | 1 | -1/+1 |
| | |||||
* | Added versionchanged flag to all the methods which received | Facundo Batista | 2007-06-11 | 7 | -0/+17 |
| | | | | | a new optional timeout parameter, and a versionadded flag to the socket.create_connection function. | ||||
* | SF #1734732, lower case the module names per PEP 8. | Neal Norwitz | 2007-06-11 | 1 | -26/+26 |
| | | | | Will backport. | ||||
* | Fix wrong documentation, and correct the punktuation. | Thomas Heller | 2007-06-08 | 1 | -2/+2 |
| | | | | Closes [1700455]. | ||||
* | Added an optional timeout parameter to function urllib2.urlopen, | Facundo Batista | 2007-06-06 | 1 | -3/+13 |
| | | | | | | | with tests in test_urllib2net.py (must have network resource enabled to execute them). Also modified test_urllib2.py because testing mock classes must take it into acount. Docs are also updated. | ||||
* | Patch #1731049: make threading.py use a proper "raise" when checking ↵ | Collin Winter | 2007-06-06 | 1 | -26/+38 |
| | | | | internal state, rather than assert statements (which get stripped out by -O). | ||||
* | Update expected birthday of 2.6 | Neal Norwitz | 2007-06-02 | 1 | -1/+1 |
| | |||||
* | Add some spaces in the example code. | Neal Norwitz | 2007-05-31 | 1 | -3/+3 |
| | |||||
* | Fix rst markup. | Georg Brandl | 2007-05-29 | 1 | -1/+1 |
| | |||||
* | Explain when groupby() issues a new group. | Raymond Hettinger | 2007-05-28 | 1 | -0/+8 |
| | |||||
* | Added errors argument to TarFile class that allows the user to | Lars Gustäbel | 2007-05-27 | 1 | -31/+135 |
| | | | | | | | | | | | | | | | | | | | | specify an error handling scheme for character conversion. Additional scheme "utf-8" in read mode. Unicode input filenames are now supported by design. The values of the pax_headers dictionary are now limited to unicode objects. Fixed: The prefix field is no longer used in PAX_FORMAT (in conformance with POSIX). Fixed: In read mode use a possible pax header size field. Fixed: Strip trailing slashes from pax header name values. Fixed: Give values in user-specified pax_headers precedence when writing. Added unicode tests. Added pax/regtype4 member to testtar.tar all possible number fields in a pax header. Added two chapters to the documentation about the different formats tarfile.py supports and how unicode issues are handled. | ||||
* | Applied patch 1669481, slightly modified: Support close_fds on Win32 | Peter Astrand | 2007-05-26 | 1 | -1/+4 |
| | |||||
* | Fix typo. | Walter Dörwald | 2007-05-26 | 1 | -1/+1 |
| | |||||
* | Updated documentation for SysLogHandler (#1720726). | Vinay Sajip | 2007-05-25 | 1 | -2/+5 |
| | |||||
* | shlex.split() now has an optional "posix" parameter. | Georg Brandl | 2007-05-24 | 1 | -2/+4 |
| | |||||
* | Remove the "panel" module doc file which has been ignored since 1994. | Georg Brandl | 2007-05-22 | 2 | -75/+0 |
| | |||||
* | Document new params to HTTPSConnection | Neal Norwitz | 2007-05-22 | 1 | -1/+3 |
| | |||||
* | Patch #1686487: you can now pass any mapping after '**' in function calls. | Georg Brandl | 2007-05-21 | 1 | -1/+1 |
| | |||||
* | fix against r55474 [Remove the macfs module] | George Yoshida | 2007-05-21 | 2 | -2/+0 |
| | | | | Remove "libmacfs.tex" from Makefile.deps and mac/mac.tex. | ||||
* | Note removed modules | Andrew M. Kuchling | 2007-05-21 | 1 | -0/+8 |
| |