https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
50af011 Bump to 3.3.0a2. 01 April 2012, 11:49:21 UTC
2489167 Fix markup errors found by "make suspicious". 01 April 2012, 11:48:26 UTC
3f4a1b3 Update pydoc topics. 01 April 2012, 11:46:44 UTC
204e789 Remove parens around link. 01 April 2012, 11:10:58 UTC
bf80308 Issue #14394: Use elaborate phrases that boil down to "one to two orders of magnitude". Provide link to the benchmarks. 01 April 2012, 11:07:24 UTC
458a6fb Issue #14463: Prevent _decimal.so compile failures in OS X installer builds. 01 April 2012, 09:30:46 UTC
4d4c0ee Issue #13507: OS X installer builds now build liblzma for the new lzma module. (Patch by Nicholas Riley) 01 April 2012, 07:17:33 UTC
5b072ef merge with 3.2 31 March 2012, 23:50:22 UTC
165a2c2 fix typo; thanks to Robert Bardos from docs@ 31 March 2012, 23:50:00 UTC
9a54a26 Issue #14300: Under Windows, sockets created using socket.dup() now allow overlapped I/O. Patch by sbt. 31 March 2012, 23:14:39 UTC
8315f96 Issue #13872: socket.detach() now marks the socket closed (as mirrored in the socket repr()). Patch by Matt Joiner. 31 March 2012, 23:00:55 UTC
70deb3d Issue #13872: socket.detach() now marks the socket closed (as mirrored in the socket repr()). Patch by Matt Joiner. 31 March 2012, 23:00:17 UTC
8612b4c Null merge 31 March 2012, 21:51:25 UTC
6211b88 Issue #14437: Fix building the _io module under Cygwin. 31 March 2012, 21:50:31 UTC
8bbe9b4 Fix formatting 31 March 2012, 19:09:53 UTC
682d443 Issue #14456: improve documentation of the signal module w.r.t. threads. 31 March 2012, 19:09:00 UTC
6afd11c Issue #14456: improve documentation of the signal module w.r.t. threads. 31 March 2012, 18:56:21 UTC
8b34b53 Issue #14406: Fix a race condition when using `concurrent.futures.wait(return_when=ALL_COMPLETED)`. Patch by Matt Joiner. 31 March 2012, 18:25:22 UTC
f70401e Issue #14406: Fix a race condition when using `concurrent.futures.wait(return_when=ALL_COMPLETED)`. Patch by Matt Joiner. 31 March 2012, 18:23:30 UTC
6eeadf0 merge heads 31 March 2012, 16:46:45 UTC
29e665d fix typo 31 March 2012, 16:44:18 UTC
3510632 merge heads 31 March 2012, 16:44:18 UTC
9e892bb fix issue #5136: deprecate old unused functions from tkinter. These functions are not documnted, so no documentation update. 31 March 2012, 16:36:39 UTC
4cc229a merge with 3.2 31 March 2012, 16:35:16 UTC
317075d use unittest.skip; thanks to Chang Min Jeon from docs@ 31 March 2012, 16:34:59 UTC
8613b0d Merge #14434: make tutorial link in 'help' banner version-specific Without this fix, both 2.7 and 3.x would always point to the "current" docs...which means that before this fix python 3.2 'help' pointed to the 2.7 tutorial. 31 March 2012, 16:08:59 UTC
de0f629 #14434: make tutorial link in 'help' banner version-specific Without this fix, both 2.7 and 3.x would always point to the "current" docs...which means that before this fix python 3.2 'help' pointed to the 2.7 tutorial. 31 March 2012, 16:06:35 UTC
dc60f94 merge with 3.2 31 March 2012, 15:44:33 UTC
9ee65f1 add 'safari' to webbrowser browsers table; thanks to Jonathan Eunice from docs@ 31 March 2012, 15:23:10 UTC
310052c Fix warning when compiling socketmodule.c with VS2010 VS2010 defineds the old errno constants in addition to the WSA* ones. 31 March 2012, 13:35:00 UTC
d4bb972 Issue #14435: Add Misc/NEWS and Misc/ACKS 31 March 2012, 13:08:11 UTC
69c2ffa issue #3035: update PendingDeprecationWarning to DeprectionWarning, point deprecation in tkinter doc 31 March 2012, 11:55:55 UTC
78a0f20 Merge from 3.2 31 March 2012, 11:20:19 UTC
f3c2976 update NEWS as Terry Reedy proposed 31 March 2012, 11:10:10 UTC
a5e8220 Fix the tests of GC collection in ET.Element according to Benjamin's recommendations 31 March 2012, 10:55:38 UTC
c689785 Fix-up a comment 31 March 2012, 09:19:06 UTC
7f7a5a7 Fix-up comments and add a sentinel variable for clarity. 31 March 2012, 04:50:40 UTC
41eb79a No need to create and destroy links when updating a fixed-sized circular queue. 31 March 2012, 02:15:18 UTC
3288e94 Merge #10423: clarify options vs args in argparse discussion of optparse Patch by Sandro Tosi. 30 March 2012, 22:08:29 UTC
5e0c571 #10423: clarify options vs args in argparse discussion of optparse Patch by Sandro Tosi. 30 March 2012, 22:07:42 UTC
1ff50df Minor cleanup: add whitespace, add comments, bring function attribute updates together. 30 March 2012, 20:15:48 UTC
0192ba3 Issue #14065: Added cyclic GC support to ET.Element 30 March 2012, 13:38:33 UTC
1e25755 Merge. 30 March 2012, 12:19:21 UTC
0e41981 Use abort() rather than exit() to appease tools like rpmlint. abort() is used in libmpdec to prevent undefined behavior if an invalid context is used. This cannot occur for the _decimal module since user input for the context is validated. 30 March 2012, 12:12:20 UTC
daa0654 Issue #14435: Remove special block allocation code from floatobject.c PyFloatObjects are now allocated using PyObject_MALLOC like all other internal types, but maintain a limited freelist of objects at hand for performance. This will result in more consistent memory usage by Python. 30 March 2012, 09:18:15 UTC
c1d9869 Issue #14006: improve the documentation of xml.etree.ElementTree Removed the useless explanation of the Element data structure that started the documentation page. Instead, the documentation now starts with a brief tutorial skimming some of the capabilities of the module. The tutorial can be followed by additional topic-specific sections (such as XPath support), and eventually by a reference that goes over the module's classes and functions, as usual. 30 March 2012, 08:44:15 UTC
dbaedb8 fix typo in glossary 30 March 2012, 08:02:05 UTC
6bdb650 Added the "provisional package" glossary term from PEP 411 30 March 2012, 07:52:25 UTC
b4f6da8 Closes #14436: merged fix from 3.2. 29 March 2012, 19:18:21 UTC
6f5e54e Closes #14436: Convert msg + args to string before pickling. 29 March 2012, 19:17:18 UTC
d3cebd7 Merge with 3.2 29 March 2012, 16:50:46 UTC
8640743 Issue #14442: Add missing errno import in test_smtplib. 29 March 2012, 16:08:48 UTC
67ac079 Issue #14409: IDLE doesn't not execute commands from shell with default keybinding for <Return>. Patch by Roger Serwy. 29 March 2012, 16:01:28 UTC
e55f663 Fix typo in unittest.mock docs 29 March 2012, 12:46:50 UTC
eac0939 #14416: conditionally add LOG_AUTHPRIV facility and LOG_ODELAY to syslog. Unlike the other facilities, we don't use a fallback for AUTHPRIV if it doesn't exist. Because it is intended for logging sensitive log messages, it is better that a program trying to log such messages fail than that it log them insecurely. Initial patch by Federico Reghenzani. 29 March 2012, 11:15:45 UTC
8c69632 Merge #14416: add missing LOG_SYSLOG facility to syslog docs. 29 March 2012, 10:49:29 UTC
07cf1d8 #14416: add missing LOG_SYSLOG facility to syslog docs. 29 March 2012, 10:47:35 UTC
909f5bc Fix newlines. 29 March 2012, 07:18:14 UTC
324b58b Update unittest.mock.patch example 28 March 2012, 14:49:08 UTC
aa8ec7e Fix unittest.mock.patch docstring 28 March 2012, 14:41:28 UTC
2309ed8 Re-order unittest.mock documentation to put magic method support before the helpers 28 March 2012, 14:38:36 UTC
9015536 Adding an example to unittest.mock.patch documentation 28 March 2012, 14:32:08 UTC
54b3db8 Minor unittest.mock.patch doc / docstring improvement 28 March 2012, 14:08:08 UTC
a9e6fb2 Unsplit unittest.mock documentation 28 March 2012, 13:36:02 UTC
ad95c2d time.time() now uses clock_gettime(CLOCK_REALTIME) if available clock_gettime(CLOCK_REALTIME) has a better resolution than gettimeofday(). time.time() falls back on gettimeofday() (and then on other functions) on error. 28 March 2012, 00:54:15 UTC
74eb6c0 Document the fact that mach_timebase_info() cannot fail And call mach_absolute_time() after mach_timebase_info(). 28 March 2012, 00:50:46 UTC
650365b Issue #11826: Fix memory leak in atexitmodule. 27 March 2012, 09:49:21 UTC
dc5a4e1 merge with 3.2 27 March 2012, 05:46:54 UTC
d864407 Closes #14411: remove outdated comment in rlcompleter docstring. 27 March 2012, 05:46:46 UTC
c0fdf6c Closes #14421: use with statement to properly close socket in bandwidth test. 27 March 2012, 05:43:53 UTC
1641bb7 Fix typo 27 March 2012, 03:35:31 UTC
ede001a Fix doc typo noticed by Amaury Forgeot d'Arc 27 March 2012, 02:57:23 UTC
8486076 Fix time.steady(strict=True): don't use CLOCK_REALTIME 26 March 2012, 20:53:14 UTC
3c1e481 Issue #14383: Add _PyDict_GetItemId() and _PyDict_SetItemId() functions These functions simplify the usage of static constant Unicode strings. Generalize the usage of _Py_Identifier in ceval.c and typeobject.c. 26 March 2012, 20:10:51 UTC
70b2e1e Issue #14368: _PyTime_gettimeofday() cannot fail floattime() must not raise an error if the current time is 1970.1.1 at 00:00. 26 March 2012, 20:08:02 UTC
a5cf6c4 Update missed idlelib/NEWS.txt 26 March 2012, 19:14:13 UTC
d543f2b IDLE can be launched as python -m ildelib 26 March 2012, 19:11:46 UTC
753445a Issue #989712: update the code to process tkinter messages in IDLE without mainloop. Thanks to Roger Serwy for patch. 26 March 2012, 18:56:44 UTC
0df5429 grammar 26 March 2012, 18:50:32 UTC
3a4875e Issue #6488: Explain the XPath support of xml.etree.ElementTree, with code samples and a reference. Also fix the other nits mentioned in the issue. This also partially addresses issue #14006. 26 March 2012, 18:43:32 UTC
70ea34d Issue #14410: merge with 3.2 26 March 2012, 17:36:44 UTC
99e7d07 Issue #14410: fix typo in argparse doc; patch by Tshepang Lekhonkhobe 26 March 2012, 17:36:23 UTC
4a1ad91 #14413: tweak word order in deprecation section 26 March 2012, 17:34:46 UTC
38a12af Updated handler documentation. 26 March 2012, 16:17:39 UTC
8ece80f Minor documentation tweak. 26 March 2012, 16:09:58 UTC
16ecb9d Issue #3367: Merge fix from 3.2. 26 March 2012, 13:11:22 UTC
0f6ce8d Issue #3367: NULL-terminate argv[] copies to prevent an invalid access in sys_update_path(). 26 March 2012, 13:05:22 UTC
c067d66 merge 3.2 26 March 2012, 02:41:16 UTC
533281d merge heads 26 March 2012, 02:41:06 UTC
a8755c5 kill this terribly outdated comment 26 March 2012, 02:40:54 UTC
0340ea7 unittest.mock: removed another bit of Python 2 only code 25 March 2012, 22:27:12 UTC
944e02d Adding unittest.mock documentation 25 March 2012, 22:12:55 UTC
e58a562 unittest.mock: a mock created by patch with a spec as the list argument will be callable if __call__ is in the spec 25 March 2012, 18:53:18 UTC
87b3caf merge with 3.2 25 March 2012, 18:41:06 UTC
d34fc8b Add missing files for new doc theme. 25 March 2012, 18:40:57 UTC
09d7126 merge heads 25 March 2012, 18:38:15 UTC
fb5d0a7 unittest.mock: remove another piece of Python 2 specific code 25 March 2012, 18:35:22 UTC
288b9bf merge with 3.2 25 March 2012, 18:32:35 UTC
ab71214 Switch to new "lighter" doc design. 25 March 2012, 18:31:57 UTC
1ab27c6 Remove more Python 2 code from unittest.mock (obsolete function attributes) 25 March 2012, 18:16:10 UTC
back to top