Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch #1682205: a TypeError while unpacking an iterable is no longer | Georg Brandl | 2007-03-21 | 3 | -6/+7 |
| | | | | | masked by a generic one with the message "unpack non-sequence". (backport from rev. 54480) | ||||
* | Extend work on rev 52962 and 53830 eliminating redundant PyObject_Hash() ↵ | Raymond Hettinger | 2007-03-20 | 4 | -5/+44 |
| | | | | calls and fixing set/dict interoperability. | ||||
* | Add new example | Raymond Hettinger | 2007-03-20 | 1 | -0/+3 |
| | |||||
* | Backport docs for recv_into and recvfrom_into. | Georg Brandl | 2007-03-18 | 2 | -2/+24 |
| | |||||
* | move note to the correct section | Gregory P. Smith | 2007-03-17 | 1 | -3/+3 |
| | |||||
* | RFE #1670167: fix in isinstance() docs. | Georg Brandl | 2007-03-16 | 1 | -2/+3 |
| | | | | (backport from rev. 54409) | ||||
* | Patch #1642547: Fix an error/crash when encountering syntax errors in ↵ | Collin Winter | 2007-03-16 | 3 | -14/+79 |
| | | | | | | complex if statements. Backported from r54404. | ||||
* | Patch #1462488: prevent a segfault in object_reduce_ex() by splitting | Žiga Seilnacht | 2007-03-15 | 3 | -14/+82 |
| | | | | | | the implementation for __reduce__ and __reduce_ex__ into two separate functions. Fixes bug #931877. (backport from rev. 54397) | ||||
* | Also commit the patch ;) | Georg Brandl | 2007-03-15 | 1 | -2/+12 |
| | |||||
* | Patch #1681153: the wave module now closes a file object it opened if | Georg Brandl | 2007-03-15 | 1 | -0/+3 |
| | | | | | initialization failed. (backport from rev. 54394) | ||||
* | Patch #1680978: consistently use "alive" instead of "active" in the | Georg Brandl | 2007-03-15 | 1 | -24/+20 |
| | | | | | thread lib doc. (backport from rev. 54392) | ||||
* | Patch #1559413: Fix test_cmd_line if sys.executable contains a space. | Martin v. Löwis | 2007-03-14 | 2 | -1/+3 |
| | |||||
* | Document fixed bugs | Barry Warsaw | 2007-03-14 | 1 | -0/+5 |
| | |||||
* | Patch #1680015: Don't modify __slots__ tuple if it contains an unicode | Žiga Seilnacht | 2007-03-14 | 3 | -16/+46 |
| | | | | | | name. Remove a reference leak that happened if the name could not be converted to string. (backport from rev. 54378) | ||||
* | Bug #767111: fix long-standing bug in urllib which caused an | Georg Brandl | 2007-03-14 | 3 | -0/+21 |
| | | | | | | AttributeError instead of an IOError when the server's response didn't contain a valid HTTP status line. (backport from rev. 54376) | ||||
* | doc update from HEAD. don't list "Unix, Windows" as a platform since that | Gregory P. Smith | 2007-03-14 | 3 | -3/+0 |
| | | | | covers everything now that Mac OS 9 isn't a popular issue. | ||||
* | doc update from HEAD | Gregory P. Smith | 2007-03-14 | 1 | -4/+4 |
| | |||||
* | SF bug #1582282; decode_header() incorrectly splits not-conformant RFC | Barry Warsaw | 2007-03-14 | 3 | -1/+26 |
| | | | | | | | 2047-like headers where there is no whitespace between encoded words. This fix changes the matching regexp to include a trailing lookahead assertion that the closing ?= must be followed by whitespace, newline, or end-of-string. This also changes the regexp to add the MULTILINE flag. | ||||
* | Inline PyImport_GetModulesReloading(). Backport from r54368. | Collin Winter | 2007-03-13 | 1 | -10/+8 |
| | |||||
* | Patch #1194449: correctly detect unbound methods in pydoc. | Georg Brandl | 2007-03-13 | 1 | -2/+2 |
| | | | | (backport from rev. 54365) | ||||
* | Bug #1622896: fix a rare corner case where the bz2 module raised an | Georg Brandl | 2007-03-13 | 2 | -10/+14 |
| | | | | | error in spite of a succesful compression. (backport from rev. 54336) | ||||
* | Patch #1449244: Support Unicode strings in | Martin v. Löwis | 2007-03-13 | 3 | -2/+14 |
| | | | | email.message.Message.{set_charset,get_content_charset}. | ||||
* | Patch #1569798: fix a bug in distutils when building Python from a | Georg Brandl | 2007-03-13 | 2 | -2/+5 |
| | | | | | directory within sys.exec_prefix. (backport from rev. 54331) | ||||
* | Patch #1542681: add entries for "with", "as" and "CONTEXTMANAGERS" to | Georg Brandl | 2007-03-13 | 2 | -0/+6 |
| | | | | | pydoc's help keywords. (backport from rev. 54329) | ||||
* | Patch #1679379: add documentation for fnmatch.translate(). | Georg Brandl | 2007-03-13 | 2 | -0/+33 |
| | | | | (backport from rev. 54323) | ||||
* | Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. ↵ | Collin Winter | 2007-03-12 | 7 | -2/+64 |
| | | | | | | Fixed by patch #922167. Backported from r54291. | ||||
* | Typo fix. | Georg Brandl | 2007-03-12 | 1 | -1/+1 |
| | | | | (backport from rev. 54292) | ||||
* | Bug #1675511: Use -Kpic instead of -xcode=pic32 on Solaris/x86. | Martin v. Löwis | 2007-03-12 | 3 | -7/+13 |
| | |||||
* | Tokio Kikuchi's fix for SF bug #1629369; folding whitespace allowed in the | Barry Warsaw | 2007-03-12 | 3 | -4/+17 |
| | | | | | | | | | display name of an email address, e.g. Foo \tBar <foo@example.com> Test case added by Barry. | ||||
* | Patch #1678662: ftp.python.org does not exist. So the testcode in urllib.py ↵ | Collin Winter | 2007-03-12 | 1 | -1/+1 |
| | | | | | | | must use a more stable FTP. Backported from r54278. | ||||
* | Fix resource leak reported in SF #1516995. | Vinay Sajip | 2007-03-11 | 1 | -0/+2 |
| | |||||
* | Patch #1192590: Fix pdb's "ignore" and "condition" commands so they trap the ↵ | Collin Winter | 2007-03-11 | 2 | -2/+13 |
| | | | | | | IndexError caused by passing in an invalid breakpoint number. Backport of r54271. | ||||
* | Patch #1675981: remove unreachable code from type.__new__() method. | Žiga Seilnacht | 2007-03-11 | 2 | -7/+7 |
| | | | | | | __dict__ and __weakref__ are removed from the slots tuple earlier in the code, in the loop that mangles slot names. (backport from rev. 54270) | ||||
* | Add missing "return" statements in exception handler. | Georg Brandl | 2007-03-11 | 1 | -0/+2 |
| | | | | (backport from rev. 54268) | ||||
* | Convert an assert to a raise so it works even in the presence of -O. | Collin Winter | 2007-03-10 | 1 | -2/+4 |
| | |||||
* | Revert rev. 54198, it's not really backwards compatible. | Georg Brandl | 2007-03-10 | 3 | -20/+4 |
| | |||||
* | Bug #1531963: Make SocketServer.TCPServer's server_address always be equal ↵ | Collin Winter | 2007-03-10 | 3 | -0/+7 |
| | | | | | | to calling getsockname() on the server's socket. Fixed by patch #1545011. Backported from r54253. | ||||
* | Merged revisions 54248 via svnmerge from | Thomas Heller | 2007-03-09 | 3 | -19/+15 |
| | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk/Lib/ctypes ........ r54248 | thomas.heller | 2007-03-09 21:39:22 +0100 (Fr, 09 Mär 2007) | 7 lines Bug #1651235: When a tuple was passed to a ctypes function call, Python would crash instead of raising an error. The crash was caused by a section of code that should have been removed long ago, at that time ctypes had other ways to pass parameters to function calls. ........ | ||||
* | Merged revisions 54244 via svnmerge from | Thomas Heller | 2007-03-09 | 4 | -5/+10 |
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk/Lib/ctypes ........ r54244 | thomas.heller | 2007-03-09 20:21:28 +0100 (Fr, 09 Mär 2007) | 3 lines Fix bug #1646630: ctypes.string_at(buf, 0) and ctypes.wstring_at(buf, 0) returned string up to the first NUL character. ........ | ||||
* | Fix SF #1676971, Complex OverflowError has a typo | Neal Norwitz | 2007-03-09 | 1 | -1/+1 |
| | |||||
* | Manual backport of r54233. This will help prevent spurious Buildbot failures | Brett Cannon | 2007-03-09 | 2 | -1/+10 |
| | | | | by HTTPS connections that time out. | ||||
* | SF #1637850: make_table in difflib did not work with unicode | Raymond Hettinger | 2007-03-08 | 2 | -5/+6 |
| | |||||
* | Backported r54226 from p3yk: Move test_unittest, test_doctest and ↵ | Collin Winter | 2007-03-08 | 1 | -0/+3 |
| | | | | test_doctest2 higher up in the testing order. | ||||
* | SF 1676321: empty() returned wrong result | Raymond Hettinger | 2007-03-08 | 2 | -1/+3 |
| | |||||
* | Add a NEWS entry for rev. 54207,8. | Georg Brandl | 2007-03-08 | 1 | -0/+6 |
| | | | | (backport from rev. 54222) | ||||
* | Fix #1676656: \em is different from \emph... | Georg Brandl | 2007-03-08 | 1 | -1/+1 |
| | | | | (backport from rev. 54220) | ||||
* | Backport skipping fromtimestamp(negative value) tests on Windows (from rev. ↵ | Georg Brandl | 2007-03-07 | 1 | -0/+7 |
| | | | | 54209) | ||||
* | backport rev. 54207: add a few sanity checks in unittest.TestSuite.addTest(s). | Georg Brandl | 2007-03-07 | 1 | -0/+9 |
| | |||||
* | Patch #1669331: clarify shutil.copyfileobj() behavior wrt. file position. | Georg Brandl | 2007-03-07 | 1 | -1/+3 |
| | | | | (backport from rev. 54202) | ||||
* | Typo fix. | Georg Brandl | 2007-03-07 | 1 | -1/+1 |
| |