Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Comment typo | Andrew M. Kuchling | 2006-12-19 | 1 | -1/+1 |
| | |||||
* | [Bug #1613651] Document socket.recv_into, socket.recvfrom_into | Andrew M. Kuchling | 2006-12-19 | 1 | -2/+23 |
| | | | | | | | | | Also, the text for recvfrom told you to read recv() for an explanation of the 'flags' argument, but recv() just pointed you at the man page. Copied the man-page text to recvfrom(), recvfrom_into, recv_into to avoid the pointless redirection. I don't have LaTeX on this machine; hope my markup is OK. | ||||
* | [Patch #1618455 by Ben Maurer] Improve speed of HMAC by using str.translate() | Andrew M. Kuchling | 2006-12-19 | 1 | -9/+4 |
| | | | | | | | instead of a more general XOR that has to construct a list. Slightly modified from Maurer's patch: the _strxor() function is no longer necessary at all. | ||||
* | Make sre's SubPattern objects accept slice objects like it already accepts | Thomas Wouters | 2006-12-19 | 1 | -0/+2 |
| | | | | simple slices. | ||||
* | Fix markup | Andrew M. Kuchling | 2006-12-18 | 1 | -2/+2 |
| | |||||
* | [Patch #1615868 by Lars Gustaebel] Use Py_off_t to fix BZ2File.seek() for ↵ | Andrew M. Kuchling | 2006-12-18 | 1 | -1/+1 |
| | | | | offsets > 2Gb | ||||
* | Describe new methods in Queue module | Andrew M. Kuchling | 2006-12-18 | 1 | -0/+7 |
| | |||||
* | [Bug #1616726] Fix description of generator.close(); if you raise some ↵ | Andrew M. Kuchling | 2006-12-18 | 1 | -7/+8 |
| | | | | random exception, the exception is raised and doesn't trigger a RuntimeError | ||||
* | Bump version | Andrew M. Kuchling | 2006-12-18 | 1 | -1/+1 |
| | |||||
* | [Bug #1618083] Add missing word; make a few grammar fixes | Andrew M. Kuchling | 2006-12-18 | 1 | -4/+4 |
| | |||||
* | 1. Avoid hang when encountering a duplicate in a completion list. Bug 1571112. | Kurt B. Kaiser | 2006-12-15 | 2 | -1/+24 |
| | | | | | | | 2. Duplicate some old entries from Python's NEWS to IDLE's NEWS.txt M AutoCompleteWindow.py M NEWS.txt | ||||
* | [Patch #1599256 from David Watson] check that os.fsync is available before ↵ | Andrew M. Kuchling | 2006-12-14 | 1 | -1/+2 |
| | | | | using it | ||||
* | Added news on recent changes to logging | Vinay Sajip | 2006-12-14 | 1 | -4/+10 |
| | |||||
* | Note that guard_warnings_filter was added in 2.6 | George Yoshida | 2006-12-14 | 1 | -0/+2 |
| | |||||
* | Add test.test_support.guard_warnings_filter . This function returns a context | Brett Cannon | 2006-12-13 | 6 | -26/+37 |
| | | | | | manager that protects warnings.filter from being modified once the context is exited. | ||||
* | Remove unneeded imports of 'warnings'. | Brett Cannon | 2006-12-13 | 2 | -2/+0 |
| | |||||
* | Remove an unneeded import of 'warnings'. | Brett Cannon | 2006-12-13 | 1 | -1/+0 |
| | |||||
* | Fix typo. | Walter Dörwald | 2006-12-12 | 1 | -1/+1 |
| | |||||
* | Patch by "cuppatea" (SF #1503765) | Vinay Sajip | 2006-12-11 | 1 | -4/+5 |
| | |||||
* | Patch by Jeremy Katz (SF #1609407) | Vinay Sajip | 2006-12-11 | 1 | -2/+2 |
| | |||||
* | Move errno imports back to individual functions. | Georg Brandl | 2006-12-11 | 1 | -2/+3 |
| | |||||
* | Fix a typo | Neal Norwitz | 2006-12-11 | 1 | -1/+1 |
| | |||||
* | - Fix the build of the library reference in info format. | Matthias Klose | 2006-12-09 | 3 | -14/+35 |
| | |||||
* | Patch #1608267: fix a race condition in os.makedirs() is the directory | Georg Brandl | 2006-12-09 | 2 | -3/+11 |
| | | | | to be created is already there. | ||||
* | #1577756: svnversion doesn't react to LANG=C, use LC_ALL=C to force | Georg Brandl | 2006-12-08 | 1 | -1/+1 |
| | | | | English output. | ||||
* | Add test for SF bug 1576657 | Raymond Hettinger | 2006-12-08 | 1 | -0/+11 |
| | |||||
* | Port Georg's dictobject.c fix keys that were tuples got unpacked on the way ↵ | Raymond Hettinger | 2006-12-08 | 1 | -1/+15 |
| | | | | | | to setting a KeyError (svn revision 52535, sf bug 1576657). | ||||
* | Port Armin's fix for a dict resize vulnerability (svn revision 46589, sf bug ↵ | Raymond Hettinger | 2006-12-08 | 1 | -6/+31 |
| | | | | 1456209). | ||||
* | Eliminate two redundant calls to PyObject_Hash(). | Raymond Hettinger | 2006-12-08 | 1 | -4/+23 |
| | |||||
* | RFE #1592899: mention string.maketrans() in docs for str.translate, | Georg Brandl | 2006-12-07 | 2 | -1/+4 |
| | | | | remove reference to the old regex module in the former's doc. | ||||
* | Fix a bad assumption that all objects assigned to '__loader__' on a module | Brett Cannon | 2006-12-06 | 1 | -1/+2 |
| | | | | will have a '_files' attribute. | ||||
* | Patch #1610437: fix a tarfile bug with long filename headers. | Georg Brandl | 2006-12-06 | 3 | -11/+21 |
| | |||||
* | Fix pickle doc typo | George Yoshida | 2006-12-05 | 1 | -1/+1 |
| | | | | Patch #1608758 | ||||
* | fix a versionchanged tag | George Yoshida | 2006-12-04 | 1 | -1/+1 |
| | |||||
* | - Fix build failure on kfreebsd and on the hurd. | Matthias Klose | 2006-12-03 | 2 | -1/+3 |
| | |||||
* | Patch #1371075: Make ConfigParser accept optional dict type | Martin v. Löwis | 2006-12-03 | 4 | -11/+68 |
| | | | | for ordering, sorting, etc. | ||||
* | Patch #1544279: Improve thread-safety of the socket module by moving | Martin v. Löwis | 2006-12-03 | 3 | -53/+48 |
| | | | | | the sock_addr_t storage out of the socket object. Will backport to 2.5. | ||||
* | Move IDLE news into NEWS.txt. | Martin v. Löwis | 2006-12-03 | 2 | -3/+3 |
| | |||||
* | Add name to credits (for untokenize). | Raymond Hettinger | 2006-12-02 | 1 | -1/+1 |
| | |||||
* | Move xdrlib tests from the module into a separate test script, | Walter Dörwald | 2006-12-01 | 3 | -78/+54 |
| | | | | port the tests to unittest and add a few new tests. | ||||
* | Update version. | Guido van Rossum | 2006-11-30 | 1 | -2/+2 |
| | |||||
* | Forgot a case where the locals can now be a general mapping | Armin Rigo | 2006-11-29 | 1 | -1/+3 |
| | | | | instead of just a dictionary. (backporting...) | ||||
* | Fix #1563807: _ctypes built on AIX fails with ld ffi error. | Thomas Heller | 2006-11-28 | 2 | -1/+3 |
| | | | | | | | The contents of ffi_darwin.c must be compiled unless __APPLE__ is defined and __ppc__ is not. Will backport. | ||||
* | Bug #1603789: grammatical error in Tkinter docs. | Georg Brandl | 2006-11-27 | 1 | -1/+1 |
| | |||||
* | Bug #1603321: make pstats.Stats accept Unicode file paths. | Georg Brandl | 2006-11-26 | 1 | -1/+1 |
| | |||||
* | Disable _XOPEN_SOURCE on NetBSD 1.x. | Martin v. Löwis | 2006-11-25 | 3 | -1/+13 |
| | | | | Will backport to 2.5 | ||||
* | Fix bug #1598620: A ctypes structure cannot contain itself. | Thomas Heller | 2006-11-24 | 3 | -3/+45 |
| | |||||
* | ... and the number of the counting shall be three. | Raymond Hettinger | 2006-11-23 | 1 | -1/+1 |
| | |||||
* | Fix and/add typo | Raymond Hettinger | 2006-11-23 | 1 | -2/+2 |
| | |||||
* | a test for an error condition not covered by existing tests | Michael W. Hudson | 2006-11-23 | 1 | -0/+7 |
| | | | | (noticed this when writing the equivalent code for pypy) |