https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
4ca5655 Remove old tag. 27 January 2014, 07:24:02 UTC
03f873d .hgtouch: add a rule for Include/Python-ast.h 27 January 2014, 06:56:59 UTC
a814533 Closes #19966: allow hgtouch to operate on a base dir that is != the repo root. 27 January 2014, 07:22:49 UTC
92b1382 Added tag v3.3.4rc1 for changeset 7f32e55f161b 25 January 2014, 08:49:22 UTC
18f2ce9 Bump to 3.3.4rc1. 25 January 2014, 08:19:50 UTC
12e18c3 Update IDLE news from Misc/NEWS. 25 January 2014, 08:19:36 UTC
bcf6924 doc: pydoc topic and suspicious markup update 25 January 2014, 08:15:44 UTC
381c280 #20311: revert changes to 3.3 branch for now until experts have decided how to resolve the issue. 25 January 2014, 08:11:13 UTC
c114353 #16042: CVE-2013-1752: smtplib fix for unlimited readline() from socket 25 January 2014, 08:02:18 UTC
f580d5b update hosting faq 25 January 2014, 04:59:57 UTC
a7184e6 Fix typo. 24 January 2014, 20:28:06 UTC
2d5a092 Issue #20384: Fix the test_tarfile test on Windows. On Windows os.open() error message doesn't contain file name. 24 January 2014, 20:19:23 UTC
f0b463a new plan: just remove typecasts (closes #20374) 24 January 2014, 16:44:16 UTC
add94c9 Issue 20317: Remove debugging code from contextlib - Alex J Burke noticed a debugging raise in the commit that fixed the original bug reported in issue 20317 - this showed that multiple iterations through the affected loop wasn't actually being tested 24 January 2014, 13:05:45 UTC
5f6bf55 use new readline function types (closes #20374) 24 January 2014, 05:32:12 UTC
bdf0cb5 Fixed test_user_command on OpenSolaris where floats can have different string representation in Tcl and Python. 23 January 2014, 14:48:44 UTC
744135d Issue #19936: Restored executable bits for several libffi files. These files have shebangs and executable bits in the libffi distribution. 23 January 2014, 14:22:55 UTC
4b73016 Added test_user_command in test_tcl. It tests the convertion Tcl values to Python values when Tcl calls a command implemented on Python. Currently all values are passed as strings. 23 January 2014, 07:44:05 UTC
94338de Issue #17390: Add Python version to Idle editor window title bar. Original patches by Edmond Burnett and Kent Johnson. 23 January 2014, 05:36:46 UTC
09761e7 Issue #20317: Don't create a reference loop in ExitStack 22 January 2014, 12:24:46 UTC
0e3b0e3 Issue #20818: Remove code from idlelib.CallTipWindow.showtip that is now completely redundant. After 16638 patch, CallTips.get_argspec trims over-long signature strings as well as docstring lines. 22 January 2014, 02:12:24 UTC
d5710f8 Issue #16638: Include up to 5 docstring header lines (before first blank) in Idle calltips. This is needed for builtins, such bytes (which is why 5). Based on patch by Serhiy Storchaka. 22 January 2014, 01:45:17 UTC
758fa5e Issue #17825: Cursor ^ is correctly positioned for SyntaxError and IndentationError. 22 January 2014, 00:11:43 UTC
6b2e559 Issue #20246: Fix test failures on FreeBSD. Patch by Ryan Smith-Roberts. 21 January 2014, 21:58:40 UTC
715476d Issue #16630: Make Idle calltips work even when __getattr__ raises. Initial patch by Roger Serwy. 21 January 2014, 20:36:51 UTC
65fd059 Issue #2382: SyntaxError cursor "^" now is written at correct position in most cases when multibyte characters are in line (before "^"). This still not works correctly with wide East Asian characters. 21 January 2014, 20:26:52 UTC
f7d2874 Issue #20301: Mention the correct KEY_* value as the default for 'access' in winreg.DeleteKeyEx. Already correct in the docs function signature and docstring. Noticed by Justin Foo. 21 January 2014, 19:49:22 UTC
7ed509a fix deprecated-removed directive with sphinx 1.2 21 January 2014, 18:20:31 UTC
eed1661 Issue #16655: Explain why Idle's test_calltips has 'fragile' tests of builtins. 21 January 2014, 08:07:51 UTC
681ede8 Issue #20122: Idlelib: Move tests in CallTips.py to test_calltips.py. 21 January 2014, 05:26:21 UTC
30ffe7e Issue #20222: file is no longer a builtin in 3.x. 21 January 2014, 05:01:51 UTC
39d798e Issue #20311: Try to fix the unit test, use time.monotonic() instead of time.perf_counter() Move also the unit test at the end. 21 January 2014, 01:37:41 UTC
665486e Issue #20311: select.epoll.poll() now rounds the timeout away from zero, instead of rounding towards zero. For example, a timeout of one microsecond is now rounded to one millisecond, instead of being rounded to zero. 21 January 2014, 00:41:00 UTC
9b7a1a1 Issue #20262: Warnings are raised now when duplicate names are added in the ZIP file or too long ZIP file comment is truncated. 20 January 2014, 19:57:40 UTC
7e52705 Issue #20315: Removed support for backward compatibility with early 2.x versions. 20 January 2014, 19:29:31 UTC
6c01e38 Issue #19036: Including locale.h should not depend on HAVE_LANGINFO_H. 20 January 2014, 14:31:08 UTC
1cfe009 put notes in a ..note section 20 January 2014, 05:10:23 UTC
f6ffb4b document that a new Python thread context is created in ctypes callbacks (closes #6627) Patch by Nikolaus Rath. 20 January 2014, 05:09:53 UTC
e83ed43 improve description of buffers argument for readv/writev (closes #17811) Patch by Nikolaus Rath. 19 January 2014, 03:54:59 UTC
a96860c correct news entry for #18574 19 January 2014, 03:31:27 UTC
3836593 add Nikolaus Rath to ACKS 19 January 2014, 02:50:35 UTC
0442423 fix handling of 100-continue status code (closes #18574) 19 January 2014, 02:50:18 UTC
4295353 #19855: restore use of LC_ALL, not LC_MESSAGES I didn't realize LC_ALL was an override, and I should have. I tried to make a test, but it is not clear that the LC variables actually affect the strings that uuid is using to parse the command output. 18 January 2014, 19:56:10 UTC
ff97b08 Issue #20270: urllib.urlparse now supports empty ports. 18 January 2014, 16:30:33 UTC
e413cde Issue #20244: Fixed possible file leaks when unexpected error raised in tarfile open functions. 18 January 2014, 14:28:08 UTC
c2d0142 Issue #20243: TarFile no longer raise ReadError when opened in write mode. 18 January 2014, 14:14:10 UTC
9fbec7a Issue #20238: TarFile opened with external fileobj and "w:gz" mode didn't write complete output on close. 18 January 2014, 13:53:05 UTC
53ad0cd Issue #20245: The open functions in the tarfile module now correctly handle empty mode. 18 January 2014, 13:35:37 UTC
af69fe2 rm extra whitespace 18 January 2014, 05:49:04 UTC
eacec1c link to builtin open not io.open 18 January 2014, 05:47:00 UTC
3d8814e describe type of Popen streams (closes #17814) Patch more or less by Nikolaus Rath. 18 January 2014, 05:45:56 UTC
c3cf97b Issue #20265: Updated some parts of the Using Windows document. Includes: -mention cx_Freeze instead of py2exe (at least until py2exe supports Python 3) -update ActivePython link -Remove mention of platforms that were never supported by Python 3 (Win9x, DOS) 17 January 2014, 21:23:42 UTC
f348909 avoid a compiler warning about assigning const char * to char *. 17 January 2014, 20:08:49 UTC
1093bf2 sort os.listxattr results before comparing it to avoid depending on the ordering of the directory information in the underlying filesystem. 17 January 2014, 20:01:22 UTC
eb14dec Added example to recently added cookbook entry. 17 January 2014, 18:36:02 UTC
6f8e81a Fix some typos/grammar in current sections of NEWS. 17 January 2014, 15:30:03 UTC
9fc0e99 Issue #20266: Update parts of the Windows FAQ 17 January 2014, 14:59:44 UTC
7f470d0 Issue #19936: Remove executable bits from C source files and several forgotten test files. 16 January 2014, 16:48:45 UTC
aea79dd Merge heads 16 January 2014, 15:20:02 UTC
b992a0e Issue #19936: Added executable bits or shebang lines to Python scripts which requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface. Fixed shebang line to use python3 executable in the unittestgui script. 16 January 2014, 15:15:49 UTC
2989f58 linkify chain.from_iterable (closes #20272) 16 January 2014, 15:10:13 UTC
216e47d update pysqlite website (closes #20278) 16 January 2014, 14:52:38 UTC
1654040 Issue #19936: Disable shebang lines in order to prevent using a random system python. 16 January 2014, 13:33:27 UTC
cbefe3b Added cookbook entry on alternative formatting styles. 15 January 2014, 15:09:05 UTC
350e623 Clarified documentation note on module-level convenience functions. 15 January 2014, 13:28:39 UTC
71337cb Issue #20255: Update the about and bugs pages. 14 January 2014, 22:03:11 UTC
9774ce0 Issue #20253: Fixed a typo in the ipaddress docs that advertised an illegal attribute name. Found by INADA Naoki. 14 January 2014, 15:09:48 UTC
26d5fab Fix typo. Found by David Pesta on docs@. 14 January 2014, 14:44:49 UTC
2d13036 Fix typo. Found by David Pesta on docs@. 14 January 2014, 14:40:53 UTC
8bd656d Closes #20258: Sphinx toolchain: move back to Jinja2 2.3.1 with support for Py2.5. 14 January 2014, 11:00:45 UTC
bd1d12e add test for #20251 14 January 2014, 05:27:42 UTC
a677d76 remove overly strict assertion (closes #20251) 14 January 2014, 05:21:49 UTC
9cb33b7 correct defaultdict signature in docstring (closes #20250) Patch from Andrew Barnert. 14 January 2014, 04:56:05 UTC
5688222 merge 3.2 (#20246) 14 January 2014, 04:12:55 UTC
fbf648e complain when nbytes > buflen to fix possible buffer overflow (closes #20246) 14 January 2014, 03:59:38 UTC
80602e0 Fix typo. 14 January 2014, 02:38:57 UTC
1fd1202 Issue #20242: Fixed basicConfig() format strings for the alternative formatting styles. 13 January 2014, 21:59:56 UTC
66c9350 #20236: Fix sphinx markup. 13 January 2014, 18:51:17 UTC
2313e15 #20206, #5803: more efficient algorithm that doesn't truncate output. This fixes an edge case (20206) where if the input ended in a character needing encoding but there was no newline on the string, the last byte of the encoded character would be dropped. The fix is to use a more efficient algorithm, provided by Serhiy Storchaka (5803), that does not have the bug. 13 January 2014, 18:19:21 UTC
2a3d7d1 Test the open of non-exitent tarfile in all modes. 13 January 2014, 17:07:33 UTC
6cbc5f7 Fixed typo. 13 January 2014, 12:23:18 UTC
939e2db Issue #19082: Working xmlrpc.server and xmlrpc.client examples. Both in modules and in documentation. 13 January 2014, 00:06:58 UTC
0abbe8c Issue #20138: The wsgiref.application_uri() and wsgiref.request_uri() functions now conform to PEP 3333 when handle non-ASCII URLs. 12 January 2014, 10:08:11 UTC
55c9e03 merge heads 12 January 2014, 07:10:39 UTC
6392ad9 Doc: update Sphinx toolchain also in make.bat 12 January 2014, 07:09:01 UTC
b4cbb92 Issue #19092 - Raise a correct exception when cgi.FieldStorage is given an invalid file-obj. Also use __bool__ to determine the bool of the FieldStorage object. 12 January 2014, 06:20:16 UTC
5636eb7 Update Sphinx toolchain. 11 January 2014, 19:04:19 UTC
2f26c22 tkinter.Text.debug() now always returns 0/1. Fixed a regression inroduced in issue #6157. 11 January 2014, 11:13:46 UTC
02d5db2 Fixed the serve.py script. The application object must return an iterable yielding bytestrings. 11 January 2014, 09:52:20 UTC
e0837a0 Try to fix some ttk tests. Error messages were changed in 8.6b3. 10 January 2014, 22:10:04 UTC
4637538 fix build when SCHED_SPORADIC is defined (closes #20217) 10 January 2014, 15:22:40 UTC
cce440f Issue #19804: The test_find_mac test in test_uuid is now skipped if the ifconfig executable is not available. 10 January 2014, 13:06:59 UTC
4847e4e Issue #19886: Use better estimated memory requirements for bigmem tests. Incorrect requirements can cause memory swapping. 10 January 2014, 11:37:54 UTC
f451112 Issue #13107: argparse and optparse no longer raises an exception when output a help on environment with too small COLUMNS. Based on patch by Elazar Gershuni. 09 January 2014, 21:14:27 UTC
32c4915 Try to fix test_ssl failures on some buildbots 09 January 2014, 20:28:48 UTC
2f7c316 Remove conditional: it is useless at this point (OpenSSL headers are not yet included) 09 January 2014, 19:07:41 UTC
cd3d7ca Issue #20207: Always disable SSLv2 except when PROTOCOL_SSLv2 is explicitly asked for. 09 January 2014, 19:02:20 UTC
1064a13 Do not reset the line number because we already set file position to correct value. (fixes error in patch for issue #18960) 09 January 2014, 18:12:49 UTC
50b82c7 clear zip stat cache after each ref leak run 09 January 2014, 17:10:30 UTC
768c16c Issue #18960: Fix bugs with Python source code encoding in the second line. * The first line of Python script could be executed twice when the source encoding (not equal to 'utf-8') was specified on the second line. * Now the source encoding declaration on the second line isn't effective if the first line contains anything except a comment. * As a consequence, 'python -x' works now again with files with the source encoding declarations specified on the second file, and can be used again to make Python batch files on Windows. * The tokenize module now ignore the source encoding declaration on the second line if the first line contains anything except a comment. * IDLE now ignores the source encoding declaration on the second line if the first line contains anything except a comment. * 2to3 and the findnocoding.py script now ignore the source encoding declaration on the second line if the first line contains anything except a comment. 09 January 2014, 16:36:09 UTC
back to top