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

sort by:
Revision Author Date Message Commit Date
0513275 Updated documentation on fileConfig(). 19 April 2011, 12:47:23 UTC
bafc6a9 Fix sporadic failure in test_startfile. Wait for the child process to terminate before ending the test, so that the regrtest cleanup code doesn't get an error when it tries to delete the temporary CWD. 18 April 2011, 23:35:58 UTC
059061a Issue #11768: signal.set_wakeup_fd() and PySignal_SetWakeupFd() added in 2.6 Fix the documentation. 18 April 2011, 14:34:31 UTC
33feeab (Merge 3.1) Issue #11768: The signal handler of the signal module only calls Py_AddPendingCall() for the first signal to fix a deadlock on reentrant or parallel calls. PyErr_SetInterrupt() writes also into the wake up file. 18 April 2011, 14:33:28 UTC
8e4eeef #11865: fix typo in init.rst. 18 April 2011, 07:11:21 UTC
efeb8bd Rework multiset methods to use less memory and to make fewer calls to __hash__. 18 April 2011, 03:08:41 UTC
c116da0 merge 11442 NEWS 17 April 2011, 21:01:13 UTC
31e1b1f merge 11442 NEWS 17 April 2011, 20:56:19 UTC
2d253dd Issue 11442: Add NEWS entry for e9724d7abbc2 17 April 2011, 20:29:40 UTC
1212582 Fix a few hyphens in argparse.rst. 16 April 2011, 20:04:51 UTC
ad72bb1 Issue #11855: Apply missing formatting for urlretrieve 16 April 2011, 12:28:42 UTC
df453fb Add another example to the collections module docs. 16 April 2011, 00:55:36 UTC
37c0fe5 Fix minor subclassing issue with collections.Counter 15 April 2011, 20:12:21 UTC
65c620d #11843: remove duplicate line from table in distutil doc. 15 April 2011, 15:05:09 UTC
c283a85 Issue #5057: fix a bug in the peepholer that led to non-portable pyc files between narrow and wide builds while optimizing BINARY_SUBSCR on non-BMP chars (e.g. u"\U00012345"[0]). 15 April 2011, 13:14:04 UTC
ddaea1c Issue #11467: Fix urlparse behavior when handling urls which contains scheme specific part only digits. Patch by Santoso Wijaya. 15 April 2011, 10:07:33 UTC
1bb18cc #11848: replace dead link in random.betavariate comment. 15 April 2011, 05:25:16 UTC
6033d26 #4783: document that is not possible to use json.dump twice on the same stream. 15 April 2011, 04:37:00 UTC
929e276 Issue #11827: remove mention of list2cmdline in the doc of subprocess 15 April 2011, 04:35:06 UTC
e57666a merge the changes. 14 April 2011, 04:58:32 UTC
a99b761 Fix Issue11474 - url2pathname() handling of '/C|/' on Windows 14 April 2011, 04:54:35 UTC
020f650 #11840: Improve c-api/unicode documentation. Patch by Sandro Tosi. 14 April 2011, 04:39:06 UTC
7f9d2ea #9101: backport json reference in configparser doc. 14 April 2011, 03:53:44 UTC
a2472d2 Transplant: Fix wording and clarify that the IDNA codec operates on full domain names. Before reading the code to check, I wasn't sure if it operated on full domain names or just individual labels. 13 April 2011, 18:20:30 UTC
9b342c6 Issue 3051: make pure python code pass the same tests as the C version. 13 April 2011, 18:15:58 UTC
2b96f09 #9233: Fix json.loads({}) to return a dict (instead of a list), when _json is not available. 13 April 2011, 02:37:29 UTC
179816d Issue 11718: Teach IDLE's open module dialog to find packages. 13 April 2011, 01:54:46 UTC
0531d6f update news in 2.7 for Issue #11703 13 April 2011, 01:47:20 UTC
ea8b6ef #10019: Fix regression relative to 2.6: add newlines if indent=0 Patch by Amaury Forgeot d'Arc, updated by Sando Tosi. 13 April 2011, 01:00:26 UTC
49c4408 Fix Issue11703 - urllib2.get_url does not handle fragment in url properly. 12 April 2011, 23:31:45 UTC
7c9d347 Issue 11747: Fix output format for context diffs. 12 April 2011, 22:48:25 UTC
d922329 Neaten-up the fix to issue 11830 12 April 2011, 16:06:01 UTC
4ded0c0 Remove unnecessary imports and use assertIs instead of assertTrue. 12 April 2011, 13:06:43 UTC
1b93021 #9233: skip _json-specific tests when _json is not available. 12 April 2011, 12:59:50 UTC
9d2ad44 Use floor division operator instead of deprecated division operator. 12 April 2011, 00:45:01 UTC
e4579c3 Issue #11830: Remove unnecessary introspection code in the decimal module. It was causing a failed import in the Turkish locale where the locale sensitive str.upper() method caused a name mismatch. 12 April 2011, 00:27:42 UTC
16f98b7 Add NEWS item for #5162. 11 April 2011, 23:05:33 UTC
40b5316 Fix #5162. Allow child spawning from Windows services (via pywin32). 11 April 2011, 23:00:59 UTC
e575f10 Remove unnecessary call to PyErr_Clear. 11 April 2011, 00:45:25 UTC
8b4367e #4877: Fix a segfault in xml.parsers.expat while attempting to parse a closed file. 11 April 2011, 00:44:28 UTC
7dfc874 Issue #8428: Fix a race condition in multiprocessing.Pool when terminating worker processes: new processes would be spawned while the pool is being shut down. Patch by Charles-François Natali. 10 April 2011, 22:26:42 UTC
04cb72f Issue9670: Back out changeset b0d2b696da19; test fails on other platforms and on OS X with pydebug. 09 April 2011, 21:59:30 UTC
e427f0f Issue #9670: Increase the default stack size for secondary threads on Mac OS X and FreeBSD to reduce the chances of a crash instead of a "maximum recursion depth" RuntimeError exception. (Patch by Ronald Oussoren) 09 April 2011, 19:29:58 UTC
fe2f1ad Issue #11719: Fix message about unexpected test_msilib skip. Patch by Nadeem Vawda. 09 April 2011, 18:39:50 UTC
5de51ac (Merge 3.1) Issue #11650: PyOS_StdioReadline() retries fgets() if it was interrupted (EINTR), for example if the program is stopped with CTRL+z on Mac OS X. Patch written by Charles-Francois Natali. 09 April 2011, 14:09:08 UTC
5dbca9c Issue #11794: Reorganised logging documentation. 08 April 2011, 10:40:38 UTC
ffc9caf Backport for Python 2.7 of issue 11715 support for building Python on multiarch Debian/Ubuntu. 07 April 2011, 15:28:11 UTC
c2b0d76 Issue #11766: increase countdown waiting for a pool of processes to start up. Hopefully fixes transient buildbot failures. 06 April 2011, 20:54:14 UTC
bb4e470 hg pull/merge - Changes to accomodate. 06 April 2011, 06:41:42 UTC
792eb5d Issue #10762: Guard against invalid/non-supported format string '%f' on Windows. Patch Santoso Wijaya. 06 April 2011, 06:27:47 UTC
07019bc Issue #11576: Fixed timedelta subtraction glitch on big timedelta values 06 April 2011, 02:12:22 UTC
5f51182 Issue #7108: Fix test_commands to not fail when special attributes ('@' or '.') appear in 'ls -l' output. 06 April 2011, 00:16:09 UTC
9f1ffb2 #7311: fix HTMLParser to accept non-ASCII attribute values. 05 April 2011, 17:40:52 UTC
104c3f1 Issue #10963: Ensure that subprocess.communicate() never raises EPIPE. 05 April 2011, 13:24:34 UTC
e3c11b4 Issue #9347: Fix formatting for tuples in argparse type= error messages. 03 April 2011, 23:47:52 UTC
824504d Dummy merge from 2.6. 31 March 2011, 15:48:31 UTC
db9d64b Issue 11713: clarify docstring for collections.deque() 30 March 2011, 00:28:25 UTC
b885a5b Merge cleanup. 29 March 2011, 20:04:24 UTC
8c850bf Merge cleanup. 29 March 2011, 20:03:10 UTC
07ef62c Merge issue 11662 from 2.6. 29 March 2011, 19:53:55 UTC
079381d Merge issue 11662 from 2.5. 29 March 2011, 19:51:16 UTC
b7ef35b Merge urllib/urllib2 security fix from 2.6 branch. 29 March 2011, 18:14:01 UTC
9a9fdfa Merge urllib/urllib2 security fix from 2.5 branch. 29 March 2011, 17:48:23 UTC
92ecb87 Adding .hgignore (copied from default branch). 29 March 2011, 16:53:33 UTC
3c599bd Issue #11639: Configuration function documentation referred to logging.XXX rather than logging.config.XXX. 29 March 2011, 00:21:48 UTC
f851fe9 Issue #11639: Configuration function documentation referred to logging.XXX rather than logging.config.XXX. 29 March 2011, 00:15:37 UTC
af1fee0 Issue #11639: Configuration function documentation referred to logging.XXX rather than logging.config.XXX. 29 March 2011, 00:07:50 UTC
77d4660 Correct handling of functions with only kwarg args in getcallargs (closes #11256) A patch from Daniel Urban. 28 March 2011, 22:32:31 UTC
41a9ec9 let's keep parenthesis around sizeof 28 March 2011, 22:25:15 UTC
db3080e Add CVE number to urllib/urllib2 news item. 28 March 2011, 20:53:40 UTC
f150930 Add tests for the urllib[2] vulnerability. Change to raise exceptions. 28 March 2011, 20:47:01 UTC
d113512 #10617: add class directives to collections ABCs. 28 March 2011, 10:46:28 UTC
7aea63f Add missing file from #11696. 27 March 2011, 19:01:03 UTC
03f7e23 Closes #11696: Fix ID generation in msilib. Patch by Mark Mc Mahon. 27 March 2011, 18:58:52 UTC
d687be0 Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when trying to pack a negative (in-range) integer. 27 March 2011, 15:15:24 UTC
1829e8f Move Misc/NEWS entry to correct section. 27 March 2011, 14:32:05 UTC
bc3b104 Issue #9026: Fix order of argparse sub-commands in help messages. (Merged from 3.2.) 27 March 2011, 11:57:55 UTC
49b0ce0 Fix short file name generation in bdist_msi. Patch by Christoph Gohlke. Closes #7639. 27 March 2011, 08:10:46 UTC
8c05568 revert unintended changes 26 March 2011, 23:11:54 UTC
e26f482 fix missing variable declarations 26 March 2011, 23:09:55 UTC
de39047 always check return value of PyObject_IsInstance for error 26 March 2011, 23:04:09 UTC
f21ad92 check possible recursive _as_parameter_ to prevent segfault (closes #1838) 26 March 2011, 22:56:28 UTC
41347fe In the Windows clean script for buildbots, also clear the build dir (so that stale test files, which can be very large, get wiped out) 26 March 2011, 21:08:21 UTC
5e0062d Issue #9343: Document that argparse parent parsers must be configured before their children. (Merge from 3.2.) 26 March 2011, 20:50:38 UTC
3f69a05 Issue #8982: Improve the documentation for the argparse Namespace object. (Merge from 3.2.) 26 March 2011, 18:59:02 UTC
5395862 Issue #9348: Raise an early error if argparse nargs and metavar don't match. (Merge from 3.2.) 26 March 2011, 16:57:52 UTC
874d59e Issue #11144: Fix corner cases where float-to-int conversion unnecessarily returned a long. 26 March 2011, 12:18:00 UTC
d3cb2f6 Issue #11675: Zero-out newly-created multiprocessing.[Raw]Array objects. 26 March 2011, 10:02:37 UTC
254d4b8 Tweaks to sys.flags description table. The options listed in the table are now links to their documentation, and the table uses compact markup to make it easier to read and edit. First proposed in #10998. 26 March 2011, 01:09:14 UTC
10ab95a Remove untrue statement from tutorial 26 March 2011, 00:26:08 UTC
8bea9a5 Use universal construct os.path.expanduser('~') instead of os.environ['HOME'] 26 March 2011, 00:24:47 UTC
9aa5a34 Issue #11666: Teach pydoc to display full help for named tuples 25 March 2011, 23:00:13 UTC
f9e9a6f Issue #11673: Fix multiprocessing.[Raw]Array constructor to accept a size of type long. Thanks Robert Kern. 25 March 2011, 22:01:06 UTC
d480d93 merge heads 25 March 2011, 21:58:31 UTC
7859d40 remove this dead subversion code 25 March 2011, 21:57:30 UTC
7548bce <Home> toggle failing on Tk 8.5, causing IDLE exits. Issue 3851. 25 March 2011, 21:48:27 UTC
4664563 #2650: Refactor re.escape and its tests. 25 March 2011, 12:50:52 UTC
72de205 Issue #11634: Remove misleading paragraph from a comment 24 March 2011, 20:38:25 UTC
2bc23b8 Add FTP to the allowed url schemes. Add Misc/NEWS. 24 March 2011, 17:44:17 UTC
60a4a90 Issue 22663: fix redirect vulnerability in urllib/urllib2. 24 March 2011, 15:07:45 UTC
back to top