Staging
v0.8.1
https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
90e8f8c Fix count of flag fields. Being one short caused the 'quiet' option not to print. 05 January 2011, 20:08:25 UTC
452196f Issue #5485: Add tests for the UseForeignDTD method of expat parser objects. Patch by Jean-Paul Calderone and Sandro Tosi. 05 January 2011, 18:44:14 UTC
a83878e Issue #5485: Add doc for expat.xmlparser.SetParamEntityParsing. 05 January 2011, 18:37:22 UTC
183fe81 #10130: Prepare for building epub-format docs. 05 January 2011, 11:00:25 UTC
0691491 Fix duplicate end tag. 05 January 2011, 10:59:48 UTC
b996f74 test_time: assertEquals => assertEqual 05 January 2011, 03:58:54 UTC
8786d3d Issue #10756: add the author, Andreas Stührk 05 January 2011, 03:56:22 UTC
c932b65 test_threading: use Popen.communicate() instead of .wait() Popen.communicate() avoids deadlocks and close the pipes when done. This commit fixes a ResourceWarning(unclosed pipe). 05 January 2011, 03:54:28 UTC
4b2b43d regrtest: close the new stdout and restore the original stdout at exit Fix a ResourceWarning(unclosed file). 05 January 2011, 03:54:26 UTC
358e11d Issue #10756: atexit normalizes the exception before displaying it. 05 January 2011, 03:54:25 UTC
29e762c test_bytes: test PyBytes_FromFormat() using ctypes 05 January 2011, 03:33:28 UTC
aaa4e9a Remove arbitrary string length limits PyUnicode_FromFormat() and PyErr_Format() allocates a buffer of the needed size, it is no more a fixed-buffer of 500 bytes. 05 January 2011, 03:33:26 UTC
477efb3 #10790: make append work when output codec is different from input codec There's still a bug here (the encode call shouldn't use the 'errors' paramter), but I'll fix that later. 05 January 2011, 01:39:32 UTC
ca1e7ec test_unicode: use ctypes to test PyUnicode_FromFormat() Instead of _testcapi.format_unicode() because it has a limited API: it requires exactly one argument of type unicode. 05 January 2011, 00:19:28 UTC
1ec121d Fix test_time under Windows 04 January 2011, 22:54:30 UTC
9d6f936 Issue #9566: PyUnicode_FromFormatV() doesn't support %zi, use %zd instead 04 January 2011, 22:00:04 UTC
ed7e222 Issue #9566: explain why (int)len cannot underflow 04 January 2011, 21:58:10 UTC
c998232 In subprocess, wrap pipe fds before launching the child. Hopefully this will fix intermittent failures on some buildbots (issue #8458). 04 January 2011, 19:07:07 UTC
9bd4a24 Fix the new bug introduced in the r87710 fix for issue 6643. DummyThread deletes its _block attribute, deal with that. This prevents an uncaught exception in a thread during test_thread. This refactors a bit to better match what I did in the r87727 backport to 2.7. 04 January 2011, 18:33:38 UTC
3fb97ae Fix exception catching. 04 January 2011, 17:27:13 UTC
5da468f Whitespace cleanup 04 January 2011, 17:15:52 UTC
ecebdc7 Issue #8013: Fix time.ctime test failure on 32-bit platforms. 04 January 2011, 17:08:04 UTC
b9588b5 Issue #8013: time.asctime and time.ctime no longer call system asctime and ctime functions. The year range for time.asctime is now 1900 through maxint. The range for time.ctime is the same as for time.localtime. The string produced by these functions is longer than 24 characters when year is greater than 9999. 04 January 2011, 16:34:30 UTC
2427ab9 logging HOWTO: fixed markup for numbered handler list. 04 January 2011, 13:58:49 UTC
dc55540 Issue #9015, #9611: stdprinter.write() clamps the length to 2^31-1 on Windows 04 January 2011, 13:15:39 UTC
0fcab4a Issue #9566: use Py_ssize_t instead of int 04 January 2011, 12:59:15 UTC
6ab8e82 Issue #8992: convertsimple() doesn't need to fill msgbuf if an error occurred Return msgbug on error is enough. 04 January 2011, 11:16:49 UTC
a093d0d Issue #8992: Simplify addcleanup() API Don't need to handle unknown destructor anymore. 04 January 2011, 11:16:48 UTC
c3a51ec Issue #10819: SocketIO.name property returns -1 when its closed, instead of raising a ValueError, to fix repr(). 04 January 2011, 11:00:45 UTC
8848c7a Issue #8650: zlib.compress() and zlib.decompress() raise an OverflowError if the input buffer length doesn't fit into an unsigned int (length bigger than 2^32-1 bytes). 04 January 2011, 02:07:36 UTC
b3c9e07 Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file doesn't have PY_SSIZE_T_CLEAN define and the size doesn't fit in an int (length bigger than 2^31-1). 04 January 2011, 02:07:34 UTC
e6edec2 Issue #9015, #9611: FileIO.readinto(), FileIO.write() and os.write() clamp the length to 2^31-1 on Windows. 04 January 2011, 00:29:35 UTC
560f9da Issue #10267: Fix refleak in test_ttk_guionly. Patch by Hirokazu Yamamoto. 04 January 2011, 00:24:03 UTC
04ba966 test_httplib: fix a DeprecationWarning, assertEquals=>assertEqual 04 January 2011, 00:04:46 UTC
7a6a009 test_array: fix the DeprecationWarning('object.__init__() takes no parameters') 04 January 2011, 00:04:44 UTC
23683ef Issue #10333: Remove ancient GC API, which has been deprecated since Python 2.2. 04 January 2011, 00:00:31 UTC
cae969e fix test_unittest: ignore DeprecationWarning on assertDictContainsSubset() 03 January 2011, 23:56:12 UTC
47f14ba Un-complicate some code 03 January 2011, 23:42:01 UTC
dcdc3b4 Add some more output 03 January 2011, 22:24:52 UTC
c43ec08 Temporary debug output for intermittent failures in test_subprocess 03 January 2011, 22:12:43 UTC
95aaeee Add a subprocess test of remapping standard file descriptors (issue #1187). 03 January 2011, 21:15:48 UTC
4d41968 news for 6643 03 January 2011, 21:09:23 UTC
96c886c issue6643 - Two locks held within the threading module on each thread instance needed to be reinitialized after fork(). Adds tests to confirm that they are and that a potential deadlock and crasher bug are fixed (platform dependant). 03 January 2011, 21:06:12 UTC
68530ac Mention --randseed in option list 03 January 2011, 20:40:07 UTC
3c4402f Issue #6293: Have regrtest.py echo back sys.flags. This is done by default in whole runs and enabled selectively using `--header` when running an explicit list of tests. Original patch by Collin Winter. 03 January 2011, 20:38:52 UTC
751ba4c Update description of Tools/unicode 03 January 2011, 19:13:02 UTC
f3fcd9f Issue #7716: Under Solaris, don't assume existence of /usr/xpg4/bin/grep in the configure script but use $GREP instead. Patch by Fabian Groffen. 03 January 2011, 18:53:50 UTC
c9c83ba Issue #10806, issue #9905: Fix subprocess pipes when some of the standard file descriptors (0, 1, 2) are closed in the parent process. Initial patch by Ross Lagerwall. 03 January 2011, 18:23:55 UTC
63ebe1c Fix test_site for systems without unsetenv. Reported by Zsolt Cserna. 03 January 2011, 17:51:11 UTC
32e1d83 Enable unittest.TestCase to be instantiated without providing a method name. Changed unittestgui to show number of discovered tests in the status bar. 03 January 2011, 17:00:11 UTC
faa8c13 test_subprocess: close pipes at the end of test_pipe_cloexec_real_tools() 03 January 2011, 16:36:00 UTC
a3abd1d pydoc: close the DocServer when done 03 January 2011, 16:12:39 UTC
2b69506 Issue #10816: multiprocessing.SocketClient() closes the socket on error Use a context manager to close immediatly the socket on error. 03 January 2011, 15:47:59 UTC
90efac7 Issue 10502: addition of unittestgui to Tools/ 03 January 2011, 15:39:49 UTC
1d5eb34 test_socket: use context managers to close directly the socket Fix ResourceWarning(unclosed socket) warnings. Patch written by Nadeem Vawda. 03 January 2011, 14:30:46 UTC
a935e8f test_xmlrpc: close the transport when done Fix a ResourceWarning(unclosed socket). Patch written by Nadeem Vawda. 03 January 2011, 14:30:44 UTC
270fe40 test_tkinter: use a context manager to close directly the pipe Patch written by Nadeem Vawda 03 January 2011, 14:30:43 UTC
5c85e3f test_timeout: move testRecvfromTimeout() to a UDP-specific test case Fix a ResourceWarning(unclosed socket). 03 January 2011, 14:30:41 UTC
109761b test_sockserver: close servers when done 03 January 2011, 14:30:39 UTC
d218e95 Issue 10786: unittest documentation update. 03 January 2011, 12:55:11 UTC
e33b7c6 Reverting the mistaken commit r87677. Checked in py3rsa.py by mistake. 03 January 2011, 10:11:07 UTC
6993d57 py3k implmentation of RSA algorithm, 03 January 2011, 09:47:09 UTC
1d1df82 Removes the 'Call' class which is used to control execution order and is unreliable on Windows 03 January 2011, 02:56:39 UTC
ff72816 Supply a reduce method for pickling. 03 January 2011, 02:44:14 UTC
426e052 Make C helper function more closely match the pure python version, and add tests. 03 January 2011, 02:12:02 UTC
23eaa70 Skip hanging test. 03 January 2011, 00:19:59 UTC
a251a85 #8278: In the Windows implementation of stat() and utime(), use time_t instead of int. This gives support for dates after 2038, at least when compiled with VS2003 or later, where time_t is 64bit. 03 January 2011, 00:19:11 UTC
9f6d48b Issue #10798: Reject supporting concurrent.futures if the system has too few POSIX semaphores. 03 January 2011, 00:07:01 UTC
e10608c #8013 follow-up: * In asctime and ctime, properly remove the newline if the year has more than four digits * Consistent error message for both functions * Fix the test comments and add a check for the removed newline 02 January 2011, 22:33:43 UTC
3e913c9 Issue #8013: Fixed test 02 January 2011, 22:16:10 UTC
e1bc898 Some nits. 02 January 2011, 22:12:22 UTC
b205d58 Add a shutdown() call in the server example. 02 January 2011, 22:09:27 UTC
4a67a46 Clarify behaviour of close() and shutdown() on sockets. 02 January 2011, 22:06:53 UTC
abcfcba issue10802: fallback to pipe+fcntl when the pipe2 syscall fails with errno ENOSYS. 02 January 2011, 20:52:48 UTC
e2dc082 Issue #8013: Fixed time.asctime segfault when OS's asctime fails 02 January 2011, 20:48:22 UTC
ece919e Fix bad quoting in r87639. Caught by Arfrever. 02 January 2011, 20:45:21 UTC
b6f4240 Issue #10807: Remove base64, bz2, hex, quopri, rot13, uu and zlib codecs from the codec aliases. They are still accessible via codecs.lookup(). 02 January 2011, 19:50:36 UTC
c224458 Issue #10475: Don't hardcode compilers for LDSHARED/LDCXXSHARED on NetBSD and DragonFly BSD. Patch by Nicolas Joly. 02 January 2011, 19:34:03 UTC
8a7e5da Fix code indentation. 02 January 2011, 19:07:51 UTC
d8f37ad Relax test condition a lot 02 January 2011, 16:16:09 UTC
121ff82 #1665333: add more docs for optparse.OptionGroup. 02 January 2011, 14:23:43 UTC
00d43fd Fix doctest to not rely on order of dictionary entries. Use super() instead of direct references to the dict superclass. 02 January 2011, 08:03:33 UTC
345c49b Fix OrderedDic.pop() to work for subclasses that define __missing__(). 01 January 2011, 23:51:55 UTC
32062e9 Make it easier to extend OrderedDict without breaking it. 01 January 2011, 22:38:00 UTC
60db467 post release bump 01 January 2011, 21:18:46 UTC
834cb39 update copyright to 2011 01 January 2011, 14:28:31 UTC
04480a8 #10801: do not actually extract, just open() the files in the test zipfile. 01 January 2011, 10:42:31 UTC
5ba11de #10801: In zipfile, support different encodings for the header and the filenames. Patch by MvL, test by Eli Bendersky. 01 January 2011, 10:09:32 UTC
d30a0dd Fix issue references. 01 January 2011, 10:07:30 UTC
554e6fa Issue 6285: add NEWS entry for 3.2. 01 January 2011, 02:54:11 UTC
6739cc0 Issue 6285: catch missing IDLE help file. 01 January 2011, 02:25:36 UTC
8dff4ba Typo. 31 December 2010, 23:23:06 UTC
a673b1f Fix OrderedDict.setdefault() to work for subclasses that define __missing__(). 31 December 2010, 23:16:17 UTC
ed13853 Happy New Year! (CET edition) 31 December 2010, 23:00:03 UTC
1daaf9e #9361: add some tests for calendar.leapdays Patch by John Chandler. 31 December 2010, 19:21:14 UTC
7b0e86e Issue #10788: Changed test_logging setUp logic to provide more information. 30 December 2010, 23:26:50 UTC
81f3d7b Update README, remove empty directory. 30 December 2010, 22:32:49 UTC
076cbae Add the missing __main__.py in the turtledemo package. It seems to have been lost during some mass rename action (r86095). 30 December 2010, 22:31:10 UTC
59b4472 Remove mentions of the Demo directory. 30 December 2010, 22:12:40 UTC
856898b Harmonize docstrings. Move redemo from Tools/scripts to Tools/demo. Add a README file to Tools/demo. 30 December 2010, 22:11:50 UTC
back to top