https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
ccc4ffe close 3.1 15 October 2014, 21:52:42 UTC
6031fdf fix poor spelling 14 April 2014, 16:15:28 UTC
cf74e75 disallow a negative idx parameter 14 April 2014, 15:45:21 UTC
66a3168 in scan_once, prevent the reading of arbitrary memory when passed a negative index Bug reported by Guido Vranken. 14 April 2014, 02:10:38 UTC
0c8cae1 use ssl.PROTOCOL_SSLv23 for maximum compatibility (closes #20896) 12 March 2014, 23:05:53 UTC
b4466f0 Issue #20246: Fix test failures on FreeBSD. Patch by Ryan Smith-Roberts. 21 January 2014, 21:58:40 UTC
e834ed9 open retrieved file in binary mode, since it's now compressed 20 February 2014, 03:56:35 UTC
7978357 update logo url (#20695) 20 February 2014, 03:55:16 UTC
92acc9f complain when nbytes > buflen to fix possible buffer overflow (closes #20246) 14 January 2014, 04:06:14 UTC
28cf368 complain when nbytes > buflen to fix possible buffer overflow (closes #20246) 14 January 2014, 03:59:38 UTC
aec3065 Fix typo. Pointed out by Finn Ellis on docs@. 14 January 2014, 02:38:17 UTC
dd1c4fd #20236: Fix sphinx markup. 13 January 2014, 18:54:54 UTC
d804f53 Backported test for the open of non-existent tarfile. 13 January 2014, 17:08:51 UTC
2e27ddd Fixed typo. 13 January 2014, 12:22:45 UTC
0110973 Issue #19082: Working SimpleXMLRPCServer and xmlrpclib examples, both in modules and documentation. 13 January 2014, 00:04:08 UTC
e198692 Issue #20138: Backport tests for handling non-ASCII URLs in the wsgiref.application_uri() and wsgiref.request_uri() functions. 12 January 2014, 10:11:47 UTC
fa6cecb Adding test coverage for cgi.FieldStorage based on the scenario mentioned in issue #19097 12 January 2014, 06:16:55 UTC
2bca9de tkinter.Text.debug() now always returns 0/1. Fixed regression inroduced in issue #6157. 11 January 2014, 11:12:58 UTC
6183f70 Try to fix some ttk tests. Error messages were changed in 8.6b3. 10 January 2014, 22:09:50 UTC
ee105dc Fixed test_tempfilepager in test_pydoc on Windows. Filename such as r'c:\users\db3l\appdata\local\temp\tmph3vkvf' contains '\t' which is interpreted by ast.literal_eval() as a tabulation. 10 January 2014, 20:43:03 UTC
664ebb0 Issue #20086: Output more details when test_getsetlocale_issue1813 is failed. 10 January 2014, 13:34:51 UTC
0f11d0f Issue #19804: The test_find_mac test in test_uuid is now skipped if the ifconfig executable is not available. 10 January 2014, 13:05:27 UTC
c9da089 Issue #19886: Use better estimated memory requirements for bigmem tests. Incorrect requirements can cause memory swapping. 10 January 2014, 11:36:56 UTC
9f8621f 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:13:48 UTC
3b2afbb Issue #20207: Always disable SSLv2 except when PROTOCOL_SSLv2 is explicitly asked for. 09 January 2014, 18:52:12 UTC
27b029b clear zip stat cache after each ref leak run 09 January 2014, 17:10:30 UTC
7251fe1 fix zipimport ref leak 09 January 2014, 15:36:10 UTC
da0b34c Fix verb tense. 08 January 2014, 23:08:37 UTC
6de7260 cleanup for the issue 19081 fix - pull the file open and close outside of the zip_searchorder scanning loop in get_module_code(). [already done in 3.3 and 3.4] 08 January 2014, 02:39:48 UTC
9be238d Issue #20072: Fixed multiple errors in tkinter with wantobjects is False. * Misc.image_names(), Misc.image_types(), Wm.wm_colormapwindows(), and LabelFrame.panes() now always return a tuple. * Fixed _stringify() for non-ASCII strings. * Fixed error of comparing str and int in tt.LabeledScale._adjust(). * ttk.Notebook.index() now always returns int. * ttk.Notebook.tabs() now always returns a tuple. * ttk.Entry.bbox() now always returns a tuple of ints. * ttk.Entry.validate() now always correctly works. * ttk.Combobox.current() now always returns int. * ttk.Panedwindow.sashpos() now always returns int. * ttk.Treeview.bbox() now always returns a tuple of ints. * ttk.Treeview.get_children() now always returns a tuple. * ttk.Treeview.exists() now always correctly works. * ttk.Treeview.index() now always returns int. * ttk.Treeview.tag_has() now always returns 0 or 1. * And numerous other errors in methods which returns a tuple, list or dict. * Fixed ttk tests for wantobjects is False. 07 January 2014, 17:32:58 UTC
ad3e725 Should fix the issue19081 fix on Windows. Don't let the previous posix module ImportError cause the nt module import to fail. 07 January 2014, 09:11:09 UTC
f5dee4d normalize whitespace from prior issue19081 fix commit. 06 January 2014, 17:51:32 UTC
7902f8d news entry for issue19081 fix. 06 January 2014, 17:50:19 UTC
b48c5d5 Fixes issue19081: When a zipimport .zip file in sys.path being imported from is modified during the lifetime of the Python process after zipimport has already opened and cached the zip's table of contents it now fstat's the file after opening it upon every attempt to access anything within and will re-read the table of contents if the .zip file inode, size or mtime have changed. It would've been nicer to hold any .zip file used by zipimport open for the duration of the process but that would be more invasive and add an additional open file descriptor to all zipimport using processes. It also would likely not fix the problem on Windows due to different filesystem semantics. 06 January 2014, 17:46:46 UTC
875565b #1065986: add missing error handler in pydoc unicode fix. 05 January 2014, 22:14:08 UTC
984f630 #1065986: Make pydoc handle unicode strings. Patch by Akira Kitada. 05 January 2014, 17:35:59 UTC
1d2ef64 #16039/#20118: temporarily skip failing imaplib SSL test. The fix the test is testing prevents a DOS attack, and the failure mode will also prevent the DOS attack, so for now skip the test. Either the test or the code does need fixing, however. 03 January 2014, 22:26:21 UTC
020d7c3 closes 16039: CVE-2013-1752: limit line length in imaplib readline calls. 03 January 2014, 18:59:22 UTC
5851218 #17282: Document unittest.main defaultTest argument. 02 January 2014, 18:38:02 UTC
8a2bfc1 Update copyright dates in Mac plists. 01 January 2014, 21:03:24 UTC
1aeb8cf update copyright year 01 January 2014, 04:02:22 UTC
22d9ee7 complain if the codec doesn't return unicode 28 December 2013, 16:33:58 UTC
63cc99d Issue #19422: Explicitly disallow non-SOCK_STREAM sockets in the ssl module, rather than silently let them emit clear text data. 28 December 2013, 16:26:33 UTC
e891de3 Fixed the wave module testing on big-endian platforms. array.fromfile() works only with file objects, not io.FileIO instances. 28 December 2013, 08:18:44 UTC
d551b28 Issue #20027: Fixed locale aliases for devanagari locales. 26 December 2013, 19:20:46 UTC
dbb9630 Backported tests for Tkinter variables. 26 December 2013, 18:08:34 UTC
5e11655 Issue #20067: Tkinter variables now work when wantobjects is false. 26 December 2013, 18:05:53 UTC
dfd21d3 #20063: Remove inaccurate/confusing statement about support of 'pop' method. Patch by Gennadiy Zlobin. 26 December 2013, 03:26:59 UTC
0356ff0 test_debug in test_tkinter/test_text no longer fails when wantobjects is false. 25 December 2013, 15:35:11 UTC
5542b15 Issue #19320: test_tcl no longer fails when wantobjects is false. 25 December 2013, 15:28:50 UTC
ec773cc Issue #19020: Tkinter now uses splitlist() instead of split() in configure methods. 25 December 2013, 14:35:20 UTC
0b6b335 Issue #20058: sys.stdin.readline() in IDLE now always returns only one line. 25 December 2013, 12:24:17 UTC
b712873 Removed spaces before colons and semicolons. 24 December 2013, 09:04:06 UTC
610f84a Removed spaces before commas and periods. 23 December 2013, 16:19:34 UTC
41432f5 update Barry's email (closes #19563) 23 December 2013, 01:45:12 UTC
c96592d s/lightweight/minimal/, as per issue #11379. 22 December 2013, 00:57:01 UTC
6200324 Issue #12226: HTTPS is now used by default when connecting to PyPI. 22 December 2013, 00:35:53 UTC
d105196 Issue #20048: Fixed ZipExtFile.peek() when it is called on the boundary of the uncompress buffer and read() goes through more than one readbuffer. This is partial backport of changeset 028e8e0b03e8. 21 December 2013, 21:51:15 UTC
0e4d852 Issue #20034: Updated alias mapping to most recent locale.alias file from X.org distribution using makelocalealias.py. 20 December 2013, 16:22:38 UTC
18ab51d Merge heads 19 December 2013, 20:31:23 UTC
80b76bf Don't use sebTest() in tests for issue #5815. 19 December 2013, 20:28:25 UTC
1875536 Issue #19683: Removed empty tests from test_minidom. Initial patch by Ajitesh Gupta. 19 December 2013, 19:44:19 UTC
bd78986 Issue #5815: Fixed support for locales with modifiers. Fixed support for locale encodings with hyphens. 19 December 2013, 19:21:06 UTC
9450219 Issue #20026: Fix the sqlite module to handle correctly invalid isolation level (wrong type). 19 December 2013, 15:44:48 UTC
0c221be Issue #18829: csv.Dialect() now checks type for delimiter, escapechar and quotechar fields. Original patch by Vajrasky Kok. 19 December 2013, 14:26:56 UTC
d46a31f Issue #19902: Added list of logging levels. 19 December 2013, 11:42:18 UTC
437c4ae update url to spec (closes #20018) 18 December 2013, 21:36:34 UTC
ddd71e2 remove trailing spaces. 18 December 2013, 19:25:26 UTC
b56c517 Issue #20005: Fix typo in operator docs. Patch by Claudiu Popa. 18 December 2013, 18:18:36 UTC
57bc6da Issue #19492: Silently skipped distutils tests now reported as skipped. 18 December 2013, 14:45:37 UTC
1516039 #19855: uuid.get_node now looks on the PATH for executables on unix. Patch by Serhiy Storchaka. 18 December 2013, 02:27:56 UTC
bd4b667 Issue #20006: Fix sporadic failures in test_weakset. 17 December 2013, 23:28:36 UTC
c97f5ed Issue #20007: HTTPResponse.read(0) no more prematurely closes connection. Original patch by Simon Sapin. 17 December 2013, 19:49:48 UTC
ea76e87 20004: Note that the setter in csv.DictReader is broken. This is a comment in the code because only someone reading the code would try setting fieldnames to None in the first place... 17 December 2013, 17:09:46 UTC
78ad658 Circumventing a bug in glibc (issue #17976). Patch by Jaakko Moisio. 17 December 2013, 15:32:20 UTC
15df36b Issue #16404: Add checks for return value of PyInt_FromLong() in sys.getwindowsversion() and ossaudiodev.setparameters(). Reported by Ned Batchelder. 17 December 2013, 13:09:45 UTC
0585418 Fixed leak in sys.flags initialization. 17 December 2013, 12:59:29 UTC
84e7e5f Skip test for issue #17976 if /dev/null is not available. 17 December 2013, 12:53:32 UTC
6d56231 Issue #17976: Fixed potential problem with file.write() not detecting IO error by inspecting the return value of fwrite(). Based on patches by Jaakko Moisio and test by Victor Stinner. 17 December 2013, 12:40:06 UTC
2f43b63 Removed old implementation of ntpath.splitunc() (issue #19912). 16 December 2013, 16:43:00 UTC
51e90bc Issue #19987: Re-write test_alias_fallback in test_winsound to have two acceptable outcomes: success or RuntimeError. Without being able to actually hear whether a sound was played, either one could be right, but any other error would be a failure. 16 December 2013, 14:58:10 UTC
4d39df3 Merge heads 16 December 2013, 13:16:11 UTC
dd5a46c Issue #19912: Fixed numerous bugs in ntpath.splitunc(). * splitunc() no more returns illegal result for paths with redundant slashes. * splitunc() now correctly processes the u'İ' character (U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE). * Added new tests for splitunc(). 16 December 2013, 13:15:29 UTC
7a2fe9c Issue #19965: Make sure that Python-ast.h is properly taken into account in the makefile. 15 December 2013, 18:07:44 UTC
d1a61dc Issue #19623: Fixed writing to unseekable files in the aifc module. Fixed writing 'ulaw' (lower case) compressed AIFC files. 14 December 2013, 18:34:33 UTC
a92cc91 Issue #17919: Fixed integer overflow in the eventmask parameter. 14 December 2013, 17:11:04 UTC
91b88c8 #19981: fix typo in email.mailbox docs. Patch by Claudiu Popa. 14 December 2013, 10:42:29 UTC
17f22c9 Issue #17919: select.poll.poll() again works with poll.POLLNVAL on AIX. 13 December 2013, 10:09:05 UTC
66c6e9d Issue #14432: Generator now clears the borrowed reference to the thread state Fix a crash when a generator is created in a C thread that is destroyed while the generator is still used. The issue was that a generator contains a frame, and the frame kept a reference to the Python state of the destroyed C thread. The crash occurs when a trace function is setup. 13 December 2013, 01:37:09 UTC
9ffb148 Fixes Issue #17200: telnetlib's read_until and expect timeout was broken by the fix to Issue #14635 in Python 2.7.4 to be interpreted as milliseconds instead of seconds when the platform supports select.poll (ie: everywhere). It is now treated as seconds once again. 11 December 2013, 02:22:03 UTC
278543d Issue #18270: Prevent possible IDLE AttributeError on OS X when no initial shell window is present. (Original patch by Terry Reedy) 11 December 2013, 00:21:58 UTC
b06231a Issue #19572: Replace a return that shouldn't have been removed from test_os. This should fix the test_os failure on the AMD64 Windows 7 buildbot. 10 December 2013, 22:06:46 UTC
227c01a Issue #19928: Fix test on Windows 10 December 2013, 20:14:28 UTC
1f70221 Issue #19572: More silently skipped tests explicitly skipped. 10 December 2013, 20:09:20 UTC
284164b Skip test for #19878 on Windows. 10 December 2013, 16:23:00 UTC
89c19fd #19943: fix typo noticed by Jakub Wilk. 10 December 2013, 12:05:46 UTC
73188fb Issue #19407: add Python Packaging User Guide notes The stdlib docs for package distribution and building extensions are rather dated, and that isn't expected to change for 2.7 and 3.3. The Python Packaging User Guide isn't complete either, but it's already a much better road map for new users than the existing stdlib docs. 10 December 2013, 11:18:32 UTC
95d7219 Issue #19928: Implemented a test for repr() of cell objects. 10 December 2013, 08:20:11 UTC
7057f3f Issue #19481: print() of unicode, str or bytearray subclass instance in IDLE no more hangs. 10 December 2013, 08:04:41 UTC
7821ff3 Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes. 10 December 2013, 00:23:22 UTC
back to top