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

sort by:
Revision Author Date Message Commit Date
b17d2aa Issue #19308: fix the gdb plugin on gdbs linked with Python 3 23 November 2013, 16:40:36 UTC
c17565e Issue #19733: Temporary disable test_image on MacOSX. 23 November 2013, 13:21:33 UTC
f92ef9b Update Itamar's name 23 November 2013, 01:17:24 UTC
e1391a0 Issue #18326: Clarify that list.sort's arguments are keyword-only. Also, attempt to reduce confusion in the glossary by not saying there are different "types" of arguments and parameters. 22 November 2013, 19:58:34 UTC
0b1386d Print Tk patchlevel in Tk and Ttk tests in verbose mode (issue19654). 21 November 2013, 17:23:19 UTC
d9a0182 Issue #19633: Fixed writing not compressed 16- and 32-bit wave files on big-endian platforms. Temporary forbidden test_unseekable_incompleted_write fornot compressed 16- and 32-bit wave file on big-endian platforms. 21 November 2013, 09:02:30 UTC
8db1823 Print Tk patchlevel in test_tcl in verbose mode (issue19654). 20 November 2013, 15:43:49 UTC
75ed890 configure: echo message to AS_MESSAGE_FD. --silent redirects fd to /dev/null. 20 November 2013, 00:11:18 UTC
2658dd7 Add workaround for VS 2010 nmake clean issue. VS 2010 doesn't set up PATH for nmake.exe correctly. 19 November 2013, 23:41:29 UTC
fb099c9 #19449: Handle non-string keys when generating 'fieldnames' error. csv was handling non-string keys fine except for the error message generated when a non-string key was not in 'fieldnames'. Fix by Tomas Grahn, full patch-with-test by Vajrasky Kok (tweaked slightly). 19 November 2013, 18:16:20 UTC
30c5ad2 #1098749: re-word gettext docs to not encourage using pygettext so much. Also, add a link to the Babel package. 19 November 2013, 16:05:20 UTC
7ad11bf - Remove execute permissions from test_dbm_gnu.py and test_dbm_ndbm.py 19 November 2013, 08:12:28 UTC
ecf4193 - Update config.{guess,sub} for new ports. 19 November 2013, 07:54:38 UTC
4accf45 Issue #19596: Set untestable tests in test_importlib to None to avoid reporting success on empty tests. 19 November 2013, 03:44:38 UTC
30d8e16 Cleanup this test's modification of os.environ in teardown (this already exists in 3.4 but apparently wasn't done for 3.3). 18 November 2013, 21:10:04 UTC
162307f Fix test.support.bind_port() to not cause an error when Python was compiled on a system with SO_REUSEPORT defined in the headers but run on a system with an OS kernel that does not support that reasonably new socket option. 17 November 2013, 22:19:32 UTC
7929a1d Fix compilation error under gcc of the ctypes module bundled libffi for arm. A variable was declared below the top of a block and one function was using a K&R C style function declaration! 17 November 2013, 21:56:07 UTC
76edd21 Issue #19603: Use specific asserts in test_decr. 17 November 2013, 21:38:50 UTC
e65cb19 Fix indentation in doc example. 17 November 2013, 20:07:48 UTC
46b4a5e Issue #19599: Increase sleep period. 17 November 2013, 17:45:16 UTC
8731d7b Fix handling of SystemExit and exit code. Patch by Brodie Rao. 17 November 2013, 17:24:11 UTC
edcf8da Issue 16998: Clarify that += on a shared value is not atomic. 17 November 2013, 17:00:38 UTC
9eefe91 Issue #19508: direct the user to read the security considerations for the ssl module 17 November 2013, 14:35:33 UTC
9d282f6 Issue #19606: Use specific asserts in http.cookiejar tests. 17 November 2013, 11:45:02 UTC
2e29c9e Issue #19607: Use specific asserts in weakref tests. 17 November 2013, 11:20:09 UTC
3df4dcc Issue #19605: Use specific asserts in datetime tests 17 November 2013, 10:52:33 UTC
3afec4e Merge heads 17 November 2013, 10:30:29 UTC
1d2436a Post-release bump. 17 November 2013, 08:17:40 UTC
497b394 merge with 3.3.3 release clone 17 November 2013, 08:17:18 UTC
7a5cf6c Added tag v3.3.3 for changeset c3896275c0f6 17 November 2013, 06:59:06 UTC
9e2043a Bump to 3.3.3 final. 17 November 2013, 06:58:22 UTC
2bbdfe7 #19238: fix typo in documentation. 17 November 2013, 00:47:12 UTC
91b3e77 Issue #19604: Use specific asserts in array tests. 16 November 2013, 22:45:17 UTC
e3b5a76 Issue #19602: Use specific asserts in tkinter tests. 16 November 2013, 22:42:25 UTC
78ee078 Issue #19601: Use specific asserts in sqlite3 tests. 16 November 2013, 22:39:12 UTC
3998915 Issue #19600: Use specific asserts in distutils tests. 16 November 2013, 22:17:46 UTC
5665bc5 Issue #19594: Use specific asserts in unittest tests. 16 November 2013, 22:12:21 UTC
7c5e24f Issue #19591: Use specific asserts in ctype tests. 16 November 2013, 21:51:26 UTC
328cf3c Issue #19590: Use specific asserts in email tests. 16 November 2013, 10:56:23 UTC
9c10d6b Issue #19504: Used American spelling for 'customize'. 15 November 2013, 20:58:13 UTC
a76157d Issue #19523: Closed FileHandler leak which occurred when delay was set. 15 November 2013, 20:40:27 UTC
b11d6cb fileutils.c: use MAXPATHLEN instead of PATH_MAX PATH_MAX is not declared on IRIX nor Windows. 15 November 2013, 17:14:11 UTC
2384714 sysmodule.c: fix sys_update_path(), use Py_ARRAY_LENGTH() to get the size of the fullpath buffer, not PATH_MAX. fullpath is declared using MAXPATHLEN or MAX_PATH depending on the OS, and PATH_MAX is not declared on IRIX. 15 November 2013, 16:33:43 UTC
2f5bbc6 pythonrun.c: fix Py_GetPythonHome(), use Py_ARRAY_LENGTH() to get the size of the env_home buffer, not PATH_MAX+1. env_home is declared using MAXPATHLEN+1, and PATH_MAX is not declared on IRIX. 15 November 2013, 16:09:24 UTC
8bdc130 Issue #19592: Use specific asserts in lib2to3 tests. 14 November 2013, 21:49:58 UTC
98a0d06 Closes #12828: add docstring text noting this is an internal-only module 12 November 2013, 15:25:15 UTC
587e970 Update e-mail address 12 November 2013, 15:02:35 UTC
09a5f5e Issue #13674 Updated NEWS 12 November 2013, 13:24:03 UTC
6e51b8f Issue13674 Correct crash with strftime %y format under Windows 12 November 2013, 12:36:54 UTC
c12f09e Issue #19440: Clean up test_capi 12 November 2013, 04:47:04 UTC
0eac43a Correct a merge error in Misc/NEWS 12 November 2013, 04:30:47 UTC
acea823 Remove outdated comment 11 November 2013, 15:08:04 UTC
53171b5 Added tag v3.3.3rc2 for changeset d32442c0e60d 11 November 2013, 05:16:15 UTC
4cf9b20 Bump to 3.3.3rc2. 11 November 2013, 05:13:54 UTC
a2ebfd0 Issue #19544 and Issue #6286: Restore use of urllib over http allowing use of http_proxy for Distutils upload command, a feature accidentally lost in the rollback of distutils2. 10 November 2013, 23:50:10 UTC
3492e39 Issue 19544 and Issue #7457: Restore the read_pkg_file method to distutils.dist.DistributionMetadata accidentally removed in the undo of distutils2. 10 November 2013, 23:15:03 UTC
a44372f Issue #1575020: Fixed support of 24-bit wave files on big-endian platforms. 09 November 2013, 21:12:06 UTC
affb9b2 Fix Tkinter tests on Tk 8.5 with patchlevel < 8.5.11 (issue #19085). 09 November 2013, 19:16:19 UTC
2915933 Valgrind: suppress false positive in _PyOS_GetOpt (getopt.c:84) (Invalid read of size 8: wcscmp (wcscmp.S:464)) 08 November 2013, 19:18:09 UTC
2fdf4e7 Move PyErr_NoMemory() closer to the failure. 08 November 2013, 17:05:02 UTC
a0fd1f5 Change style to match the surrounding code (no early returns). 08 November 2013, 16:48:58 UTC
7e24617 Issue #19227 / Issue #18747: Remove pthread_atfork() handler to remove OpenSSL re-seeding It is causing trouble like e.g. hanging processes. 29 October 2013, 19:50:01 UTC
b3acacc Transplant of rev 544b654d000c: directory traversal attack in CGIHttpRequestHandler. 11 November 2013, 05:10:23 UTC
85b8be1 Issue #15663: Revert OS X installer built-in Tcl/Tk support for 3.3.3. Some third-party projects, such as matplotlib and PIL/Pillow, depended on being able to build with Tcl and Tk frameworks in /Library/Frameworks. They were unable to build with the built-in Tcl/Tk and/or execute correctly. 05 November 2013, 10:44:17 UTC
ac47085 Issue #19437: Fix dec_format() of the _decimal module, handle dec_strdup() failure (memory allocation failure): raise a MemoryError exception 29 October 2013, 19:33:14 UTC
a992e11 Issue #19437: Fix convert_op_cmp() of decimal.Decimal rich comparator, handle PyObject_IsInstance() failure 29 October 2013, 18:26:11 UTC
7165d8b #19480: HTMLParser now accepts all valid start-tag names as defined by the HTML5 standard. 07 November 2013, 16:33:24 UTC
d5a2f0b #18985: Improve fcntl documentation. Original patch by Vajrasky Kok, further improved (I hope) by me. 07 November 2013, 15:51:07 UTC
7c934da Revert wrong change in previous commit (issue #19085). 05 November 2013, 20:01:46 UTC
8f9f587 Fix test_insertwidth Tkinter tests on Tk 8.5 with patchlevel >= 8.5.12 (issue #19085). 05 November 2013, 19:05:10 UTC
98555f3 Fix typo in tkinter tests (issue #19085). 05 November 2013, 18:17:50 UTC
6fc5f98 Issue #15663: Revert OS X installer built-in Tcl/Tk support for 3.3.3. Some third-party projects, such as matplotlib and PIL/Pillow, depended on being able to build with Tcl and Tk frameworks in /Library/Frameworks. They were unable to build with the built-in Tcl/Tk and/or execute correctly. 05 November 2013, 10:44:17 UTC
2c1adcb Issue #18345: Added cookbook example illustrating handler customisation. 05 November 2013, 10:02:21 UTC
5c81164 Issue #19397: test_pydoc now works with -S (help not added to builtins). Patch by Serhiy Storchaka and Vajrasky Kok. 05 November 2013, 02:43:26 UTC
2028e01 Issue #19085: Fix running test_ttk_textonly on displayless host. 04 November 2013, 21:05:37 UTC
8d8599c Issue #19085: Fix Tkinter tests on Tk 8.5 with patchlevel < 8.5.12. 04 November 2013, 20:11:12 UTC
975708a null-merge 3.2 backouts 04 November 2013, 06:46:02 UTC
ee7f3fc Backout 7d399099334d. 04 November 2013, 06:44:29 UTC
7b5d6ad Backout 265d369ad3b9. 04 November 2013, 06:43:41 UTC
7ec3e56 Backout d80207d15294. 04 November 2013, 06:43:32 UTC
c3909e5 Issue #15392: Install idlelib/idle_test. 04 November 2013, 04:08:53 UTC
200bcbc Issue #19391: Clean up PCbuild/readme.txt 04 November 2013, 03:48:54 UTC
7908068 Issue #18702: All skipped tests now reported as skipped. 03 November 2013, 19:31:18 UTC
834856a Merge 03 November 2013, 18:27:40 UTC
3a2abb5 Issue #10197: Indicate availability of subprocess.get[status]output on Windows and add a note about the effects of universal newlines 03 November 2013, 18:24:50 UTC
5fdb64b #19411: Clarify that b2a_hex/hexlify returns a bytes object. Initial patch by Vajrasky Kok. 03 November 2013, 18:21:38 UTC
0de4d3e #19485: clarify get_param example. Patch by Vajrasky Kok. 03 November 2013, 17:23:23 UTC
b281732 Issue #19085: Fixed pixels rounding for last Tk patchlevels. 03 November 2013, 16:24:31 UTC
49667f0 Issue #10197: merge heads 03 November 2013, 14:20:23 UTC
e004175 Issue #10197 Rework subprocess.get[status]output to use subprocess functionality and thus to work on Windows. Patch by Nick Coghlan. 03 November 2013, 12:53:17 UTC
0b9e815 Issue #6157: Fixed tkinter.Text.debug(). Original patch by Guilherme Polo. 03 November 2013, 12:29:35 UTC
2849e0d Issue #6160: The bbox() method of tkinter.Spinbox now returns a tuple of integers instead of a string. Based on patch by Guilherme Polo. 03 November 2013, 12:13:34 UTC
0bdcdec Issue #19464 Suppress compiler warnings during clean. Patch by Zachary Ware. 03 November 2013, 11:58:02 UTC
ca9242f Merge with 3.2 for Issue #19286. 02 November 2013, 17:01:46 UTC
32bf5e1 Update NEWS for 265d369ad3b9. 02 November 2013, 17:00:01 UTC
0aade62 Merge heads 02 November 2013, 16:53:06 UTC
9788497 Issue #19085: Fixed some Tkinter tests on Windows. 02 November 2013, 16:50:42 UTC
b8ec1e3 Relax timeout test. 02 November 2013, 16:46:32 UTC
5028f4d Use unittest.main() in test_htmlparser. 02 November 2013, 15:49:08 UTC
bd26d86 Issue #19286: [distutils] Only match files in build_py.find_data_files. 02 November 2013, 15:07:35 UTC
back to top