summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Patch #1682205: a TypeError while unpacking an iterable is no longerGeorg Brandl2007-03-213-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 Hettinger2007-03-204-5/+44
| | | | calls and fixing set/dict interoperability.
* Add new exampleRaymond Hettinger2007-03-201-0/+3
|
* Backport docs for recv_into and recvfrom_into.Georg Brandl2007-03-182-2/+24
|
* move note to the correct sectionGregory P. Smith2007-03-171-3/+3
|
* RFE #1670167: fix in isinstance() docs.Georg Brandl2007-03-161-2/+3
| | | | (backport from rev. 54409)
* Patch #1642547: Fix an error/crash when encountering syntax errors in ↵Collin Winter2007-03-163-14/+79
| | | | | | complex if statements. Backported from r54404.
* Patch #1462488: prevent a segfault in object_reduce_ex() by splittingŽiga Seilnacht2007-03-153-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 Brandl2007-03-151-2/+12
|
* Patch #1681153: the wave module now closes a file object it opened ifGeorg Brandl2007-03-151-0/+3
| | | | | initialization failed. (backport from rev. 54394)
* Patch #1680978: consistently use "alive" instead of "active" in theGeorg Brandl2007-03-151-24/+20
| | | | | thread lib doc. (backport from rev. 54392)
* Patch #1559413: Fix test_cmd_line if sys.executable contains a space.Martin v. Löwis2007-03-142-1/+3
|
* Document fixed bugsBarry Warsaw2007-03-141-0/+5
|
* Patch #1680015: Don't modify __slots__ tuple if it contains an unicodeŽiga Seilnacht2007-03-143-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 anGeorg Brandl2007-03-143-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 thatGregory P. Smith2007-03-143-3/+0
| | | | covers everything now that Mac OS 9 isn't a popular issue.
* doc update from HEADGregory P. Smith2007-03-141-4/+4
|
* SF bug #1582282; decode_header() incorrectly splits not-conformant RFCBarry Warsaw2007-03-143-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 Winter2007-03-131-10/+8
|
* Patch #1194449: correctly detect unbound methods in pydoc.Georg Brandl2007-03-131-2/+2
| | | | (backport from rev. 54365)
* Bug #1622896: fix a rare corner case where the bz2 module raised anGeorg Brandl2007-03-132-10/+14
| | | | | error in spite of a succesful compression. (backport from rev. 54336)
* Patch #1449244: Support Unicode strings inMartin v. Löwis2007-03-133-2/+14
| | | | email.message.Message.{set_charset,get_content_charset}.
* Patch #1569798: fix a bug in distutils when building Python from aGeorg Brandl2007-03-132-2/+5
| | | | | directory within sys.exec_prefix. (backport from rev. 54331)
* Patch #1542681: add entries for "with", "as" and "CONTEXTMANAGERS" toGeorg Brandl2007-03-132-0/+6
| | | | | pydoc's help keywords. (backport from rev. 54329)
* Patch #1679379: add documentation for fnmatch.translate().Georg Brandl2007-03-132-0/+33
| | | | (backport from rev. 54323)
* Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. ↵Collin Winter2007-03-127-2/+64
| | | | | | Fixed by patch #922167. Backported from r54291.
* Typo fix.Georg Brandl2007-03-121-1/+1
| | | | (backport from rev. 54292)
* Bug #1675511: Use -Kpic instead of -xcode=pic32 on Solaris/x86.Martin v. Löwis2007-03-123-7/+13
|
* Tokio Kikuchi's fix for SF bug #1629369; folding whitespace allowed in theBarry Warsaw2007-03-123-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 Winter2007-03-121-1/+1
| | | | | | | must use a more stable FTP. Backported from r54278.
* Fix resource leak reported in SF #1516995.Vinay Sajip2007-03-111-0/+2
|
* Patch #1192590: Fix pdb's "ignore" and "condition" commands so they trap the ↵Collin Winter2007-03-112-2/+13
| | | | | | IndexError caused by passing in an invalid breakpoint number. Backport of r54271.
* Patch #1675981: remove unreachable code from type.__new__() method.Žiga Seilnacht2007-03-112-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 Brandl2007-03-111-0/+2
| | | | (backport from rev. 54268)
* Convert an assert to a raise so it works even in the presence of -O.Collin Winter2007-03-101-2/+4
|
* Revert rev. 54198, it's not really backwards compatible.Georg Brandl2007-03-103-20/+4
|
* Bug #1531963: Make SocketServer.TCPServer's server_address always be equal ↵Collin Winter2007-03-103-0/+7
| | | | | | to calling getsockname() on the server's socket. Fixed by patch #1545011. Backported from r54253.
* Merged revisions 54248 via svnmerge fromThomas Heller2007-03-093-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 fromThomas Heller2007-03-094-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 typoNeal Norwitz2007-03-091-1/+1
|
* Manual backport of r54233. This will help prevent spurious Buildbot failuresBrett Cannon2007-03-092-1/+10
| | | | by HTTPS connections that time out.
* SF #1637850: make_table in difflib did not work with unicodeRaymond Hettinger2007-03-082-5/+6
|
* Backported r54226 from p3yk: Move test_unittest, test_doctest and ↵Collin Winter2007-03-081-0/+3
| | | | test_doctest2 higher up in the testing order.
* SF 1676321: empty() returned wrong resultRaymond Hettinger2007-03-082-1/+3
|
* Add a NEWS entry for rev. 54207,8.Georg Brandl2007-03-081-0/+6
| | | | (backport from rev. 54222)
* Fix #1676656: \em is different from \emph...Georg Brandl2007-03-081-1/+1
| | | | (backport from rev. 54220)
* Backport skipping fromtimestamp(negative value) tests on Windows (from rev. ↵Georg Brandl2007-03-071-0/+7
| | | | 54209)
* backport rev. 54207: add a few sanity checks in unittest.TestSuite.addTest(s).Georg Brandl2007-03-071-0/+9
|
* Patch #1669331: clarify shutil.copyfileobj() behavior wrt. file position.Georg Brandl2007-03-071-1/+3
| | | | (backport from rev. 54202)
* Typo fix.Georg Brandl2007-03-071-1/+1
|