https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
06ddddf NEWS rewrap. 03 July 2011, 07:42:43 UTC
d4fa7ed Bump to 3.2.1rc2. 03 July 2011, 07:41:27 UTC
f069100 Fix bad markup. 03 July 2011, 07:39:49 UTC
fa76ceb Update pydoc topics. 03 July 2011, 07:31:04 UTC
7f3cd98 Fix target path in message. 03 July 2011, 07:30:42 UTC
187c111 Regenerate configure. 03 July 2011, 07:23:20 UTC
0694562 disable ASDLGEN if hg won't work, or if python is not installed. This change makes configure check for - the existence of a hg repository - the hg executable itself - the python executable Running $(srcdir)/Parser/asdl_c.py (i.e. ASDLGEN) will fail if any of the above prerequisites is missing, so we now disable it instead. closes #12225 31 May 2011, 22:10:03 UTC
ac4e5ab #12147: make send_message correctly handle Sender and Resent- headers. Original patch by Nicolas Estibals. My tweaks to the patch were mostly style/cosmetic, and adding more tests. 03 July 2011, 01:03:19 UTC
623e8b8 Removed some unused local variables. 02 July 2011, 16:21:37 UTC
5bdae3b Closes #12291: Fixed bug which was found when doing multiple loads from one stream. 02 July 2011, 15:42:47 UTC
a4a0406 Merge issue #12352: Fix a deadlock in multiprocessing.Heap when a block is freed by the garbage collector while the Heap lock is held. 02 July 2011, 12:39:53 UTC
778db49 Issue #12352: Fix a deadlock in multiprocessing.Heap when a block is freed by the garbage collector while the Heap lock is held. 02 July 2011, 12:35:49 UTC
ee1a7cb #11873: another try at fixing the regex, courtesy of Victor Stinner 01 July 2011, 18:55:43 UTC
a3bb2f5 #11873: fix test regex so it covers windows os.sep as well. 01 July 2011, 15:51:50 UTC
dfde0d4 Issue #12363: increase the timeout of siginterrupt() tests Move also the "ready" trigger after the installation of the signal handler and the call to siginterrupt(). Use a timeout of 5 seconds instead of 3. Two seconds are supposed to be enough, but some of our buildbots are really slow (especially the FreeBSD 6 VM). 01 July 2011, 13:58:39 UTC
8d64248 Issue #12363: improve siginterrupt() tests Backport commits 968b9ff9a059 and aff0a7b0cb12 from the default branch to 3.2 branch. Extract of the changelog messages: "The previous tests used time.sleep() to synchronize two processes. If the host was too slow, the test could fail. The new tests only use one process, but they use a subprocess to: - have only one thread - have a timeout on the blocking read (select cannot be used in the test, select always fail with EINTR, the kernel doesn't restart it) - not touch signal handling of the parent process" and "Add a basic synchronization code between the child and the parent processes: the child writes "ready" to stdout." I replaced .communicate(timeout=3.0) by an explicit waiting loop using Popen.poll(). 01 July 2011, 13:24:50 UTC
26d3186 Issue #11870: Skip test_threading.test_2_join_in_forked_process() on platforms with known OS bugs Share the list of platforms with known OS bugs with other tests. Patch written by Charles-François Natali. 01 July 2011, 12:26:24 UTC
bef7fdf test_os: remove now useless TemporaryFileTests testcase TemporaryFileTests has tests for os.tempnam() and os.tmpfile(), functions removed from Python 3. Move fdopen() tests to the FileTests testcase to test fdopen() on a file descriptor, not on a directory descriptor (which raises an error on Windows). 01 July 2011, 11:45:30 UTC
d57c5c8 libpython.py (gdb) now catchs IOError in py-list and py-bt commands py-list displays the error. py-bt ignores the error (the filename and line number is already displayed). 01 July 2011, 10:57:44 UTC
98b3722 test_os: add TemporaryFileTests to the testcase list The testcase was never executed, it's now fixed. 01 July 2011, 00:56:15 UTC
71cbafb Issue #12407: Explicitly skip test_capi.EmbeddingTest under Windows. 30 June 2011, 18:02:54 UTC
a6d2c76 Issue #12451: Open files in binary mode in some tests when the text file is not needed. Remove also an unused variable (blank) in test_threading. 30 June 2011, 16:20:11 UTC
eaf399e Issue #12451: The XInclude default loader of xml.etree now decodes files from UTF-8 instead of the locale encoding if the encoding is not specified. It now also opens XML files for the parser in binary mode instead of the text mode to avoid encoding issues. 30 June 2011, 16:10:14 UTC
12b8d14 Issue #12451: doctest.debug_script() doesn't create a temporary file anymore to avoid encoding issues (it used the locale encoding, whereas UTF-8 should be). Remove also an unused import (warnings). 30 June 2011, 15:35:55 UTC
e6c910e Issue #12451: pydoc.synopsis() now reads the encoding cookie if available, to read the Python script from the right encoding. 30 June 2011, 13:55:43 UTC
dc9b1ea Issue #12451: distutils now opens the setup script in binary mode to read the encoding cookie, instead of opening it in UTF-8. 30 June 2011, 13:40:22 UTC
fcc2a21 Issue #12400: regrtest.runtest() uses stream.seek(0) before .truncate() .truncate(0) doesn't rewind. 29 June 2011, 18:01:29 UTC
592f679 Issue #12400: test_zipimport_support doesn't restore original sys.stdout anymore regrtest doesn't check that a test doesn't output anything anymore. 29 June 2011, 16:11:36 UTC
85b3a49 Issue #12400: runtest() truncates the StringIO stream before a new test 29 June 2011, 15:26:38 UTC
125b2ba Issue #12400: Add missing import (os) to test_kqueue 29 June 2011, 15:20:02 UTC
bddc4d4 Issue #12400: test.support.run_doctest() doesn't change sys.stdout anymore regrtest doesn't check that tests doesn't write something to stdout anymore. Don't replace sys.stdout by the original sys.stdout to be able to capture the output for regrtest -W. 29 June 2011, 13:52:46 UTC
ea95de7 Issue #12400: regrtest, force verbose mode to True with option -W If verbose is False, the output is empty. Fix also a typo in a variable name. 29 June 2011, 13:34:48 UTC
8313d6a Issue #12400: runtest() reuses the same io.StringIO instance for all calls * Don't force verbose to True with option -W * Rename rerun_failed variable to output_on_failure 29 June 2011, 13:22:26 UTC
46b2091 Issue #12400: don't use sys.stderr in test_kqueue because it may be replaced by a io.StringIO object by regrtest (which has no file descriptor). 29 June 2011, 12:59:10 UTC
bd98f93 Issue #12400: remove unused variable 29 June 2011, 11:24:28 UTC
a7c33e5 Issue #12400: regrtest -W doesn't rerun the tests twice anymore, but captures the output and displays it on failure instead. regrtest -v doesn't print the error twice anymore if there is only one error. 29 June 2011, 11:00:54 UTC
eb5af22 Merge 3.2 29 June 2011, 03:19:36 UTC
657b2de Issue #9516: Update Misc/NEWS. 29 June 2011, 02:51:30 UTC
84d8fcf merge 3.1 29 June 2011, 02:49:40 UTC
a8f8b50 Issue #9516: Change distutils to no longer globally attempt to check and set the MACOSX_DEPLOYMENT_TARGET env variable for the interpreter process on OS X. This could cause failures in non-distutils subprocesses and was unreliable since tests or user programs could modify the interpreter environment after distutils set it. Instead, have distutils set the the deployment target only in the environment of each build subprocess. Continue to use the previous algorithm for deriving the deployment target value: if MACOSX_DEPLOYMENT_TARGET is not set in the interpreter's env: use the interpreter build configure MACOSX_DEPLOYMENT_TARGET elif the MACOSX_DEPLOYMENT_TARGET env value >= configure value: use the env MACOSX_DEPLOYMENT_TARGET else: # env value less than interpreter build configure value raise exception This allows building extensions that can only run on newer versions of the OS than the version python was built for, for example with a python built for 10.3 or later and an extension that needs to be built for 10.5. 29 June 2011, 02:44:24 UTC
d13007f Issue #9516: Correct and expand OS X deployment target tests in distutils test_build_ext. 29 June 2011, 02:43:15 UTC
58f27b2 Issue #12141: Install a copy of template C module file so that test_build_ext of test_distutils is no longer silently skipped when run outside of a build directory. 28 June 2011, 07:42:50 UTC
3eb67d5 Issue #8746: Correct faulty configure checks so that os.chflags() and os.lchflags() are once again built on systems that support these functions (*BSD and OS X). Also add new stat file flags for OS X (UF_HIDDEN and UF_COMPRESSED). Also add additional tests for os.chflags() and os.lchflags(). (Tests by Garrett Cooper) 28 June 2011, 07:00:28 UTC
11f00f3 Issue #10736: Fix test_ttk test_widgets failures with Cocoa Tk 8.5.9 on Mac OS X. (Patch by Ronald Oussoren) 28 June 2011, 06:12:20 UTC
68b543a fix ws 27 June 2011, 22:51:18 UTC
6ccfe85 add more ast tests (closes #11302) A patch from Vincent Legoll. 27 June 2011, 22:46:06 UTC
84e3ccc Fix closes Issue12385 - Clarify maketrans method docstring for bytes and bytearray object. 27 June 2011, 16:06:45 UTC
0f93d3d strip trailing ws 27 June 2011, 14:18:46 UTC
a63a530 merge heads 27 June 2011, 14:16:14 UTC
8d77069 update profile license (closes #12417) 27 June 2011, 14:14:34 UTC
afa44a8 update profile license (closes #12417) 27 June 2011, 14:14:34 UTC
7d80bd1 Fix closes issue 11568 - update select.epoll.register docstring with mention of correct behavior. 27 June 2011, 06:48:23 UTC
b34705f Issue #8890: Remove /tmp from examples. 26 June 2011, 13:29:06 UTC
038018a Issue #4608: urllib.request.urlopen does not return an iterable object 26 June 2011, 12:29:35 UTC
4850d52 #11363: add missing functions from curses doc. Patch by Sandro Tosi. 26 June 2011, 10:34:56 UTC
b6b7371 #11363: clean up curses doc. 26 June 2011, 10:38:11 UTC
fc3db8a #11669: rephrase footnote in the Compound Statements page. 26 June 2011, 08:25:28 UTC
54cc5fd Use correct markup in zipimport.rst. Patch by Sara Magliacane. 25 June 2011, 16:40:06 UTC
7079719 Issue 11802: filecmp cache was growing without bound. 25 June 2011, 15:20:21 UTC
6ddefd7 Issue 12086: add example showing how to use name mangling. 25 June 2011, 14:30:39 UTC
9d3df6d Issue 11889: Clarify docs for enumerate. 25 June 2011, 13:00:14 UTC
eceebeb Issue #12408: Fix relative import in test_future5.py. Thanks Cesare Di Mauro. 25 June 2011, 11:29:14 UTC
7e4b5c6 Merge #12228 25 June 2011, 10:04:08 UTC
40d9ebe Issue #12228: Fix exchanged flag descriptions in stat.rst. Thanks Sandro Tosi. 25 June 2011, 10:03:33 UTC
91b79af merge 25 June 2011, 09:50:00 UTC
4d5208d Fix typo (reported by Hiro Ashiya). 25 June 2011, 09:39:00 UTC
f00bfa2 #12341: add coverage files/dirs to .hgignore. Patch by Sandro Tosi. 25 June 2011, 09:36:38 UTC
5279fb9 Code simplification suggested by Sven Marnach. 25 June 2011, 09:30:53 UTC
dbfb9b8 Issue 12404: Remove C89 incompatible code from mmap module. Patch by Akira Kitada. 25 June 2011, 08:02:37 UTC
e697e37 #10206: add test for previously fixed bug. Patch by Francisco Martín Brugué. 24 June 2011, 17:26:31 UTC
24eb4bc #9921: clarify os.path.join joining algorithm The new wording is based on the comments in the code, which match the actual behavior. 24 June 2011, 01:26:13 UTC
66f7d66 Issue #11223: skip also test_rlock_acquire_interruption() on FreeBSD6 23 June 2011, 12:22:28 UTC
f25ae48 Issue #11223: skip test_lock_acquire_interruption() on FreeBSD6 Locks are implemented using a mutex and a condition variable of the pthread library on FreeBSD6. POSIX condition variables cannot be interrupted by signals (see pthread_cond_wait manual page). 23 June 2011, 09:57:56 UTC
62d5118 Issue #12383: skip test_empty_env() of subprocess on Windows Cannot test an empty environment on Windows: Windows requires at least the SYSTEMROOT environment variable to start Python. 22 June 2011, 23:02:25 UTC
237e5cb Issue #12383: fix test_empty_env() of subprocess on Mac OS X Mac OS X adds __CF_USER_TEXT_ENCODING variable to an empty environment. Fix also the test on the Py_ENABLE_SHARED config varible: test that the variable is present, don't check it's value. 22 June 2011, 19:28:43 UTC
372309a Issue #12383: skip test_empty_env() if compiled is compiled in shared mode Try also to get more informations about the Mac OS X failure: display the keys of the environment, instead of just the number of variables. 21 June 2011, 19:59:06 UTC
f1512a2 Close #12383: Fix subprocess module with env={}: don't copy the environment variables, start with an empty environment. 21 June 2011, 15:18:38 UTC
b7149ca fix indentation 21 June 2011, 03:09:13 UTC
66b371e merge heads 21 June 2011, 02:40:34 UTC
f63d615 fix indentation 21 June 2011, 02:40:19 UTC
2fae27b Issue #12285: multiprocessing.Pool() raises a ValueError if the number of processes if negative or null. 20 June 2011, 15:53:35 UTC
4707a99 Fix closes Issue12359 - Removing a confusing sentence from the previous change. 20 June 2011, 14:30:34 UTC
656df5e Fix closes issue 12360 - correcting parameter names in asyncore documentation. 20 June 2011, 01:22:33 UTC
1508570 minor space nit. 20 June 2011, 00:41:33 UTC
5c0347b Fix closes Issue12359 - Minor update to module import description. 20 June 2011, 00:37:06 UTC
fd8d7e9 Whitespace nit fixed using reident. 19 June 2011, 23:59:41 UTC
ce9b596 Fix closes Issue12315 - Updates to http.client documentation. 19 June 2011, 23:56:49 UTC
206cd1c fix uglyNamingConvention 19 June 2011, 22:49:13 UTC
a977acc merge from 3.1 for issue issue12261. 19 June 2011, 20:55:48 UTC
fe9230a Fix closes issue12261 - Minor documention changes in the urllib.parse.rst 19 June 2011, 20:52:49 UTC
409c32f #6771: fix docs: curses.wrapper is exposed as a function, not a module Patch by July Tikhonov. 18 June 2011, 23:34:12 UTC
e5e366c #11584: make Header and make_header handle binary unknown-8bit input Analogous to the decode_header fix, this fix makes Header.append and make_header correctly handle the unknown-8bit charset introduced by email5.1, when the input to them is binary strings. Previous to this fix the make_header(decode_header(x)) == x invariant was broken in the face of the unknown-8bit charset. 18 June 2011, 16:57:28 UTC
6bdb176 #11584: make decode_header handle Header objects correctly This updates b21fdfa0019c, which fixed this bug incorrectly. 18 June 2011, 16:30:55 UTC
c88bce1 #11700: proxy object close methods can now be called multiple times This makes them work like the close provided by regular file objects. 18 June 2011, 02:24:05 UTC
05ff990 #11767: use context manager to close file in __getitem__ to prevent FD leak All of the other methods in mailbox that create message objects take care to close the file descriptors they use, so it seems to make sense to have __getitem__ do so as well. Patch by Filip Gruszczyński. 17 June 2011, 16:54:56 UTC
26de69d posixmodule.c: fix function name in argument parsing Fix os.fchown() and os.open() Remove also trailing spaces and replace tabs by spaces. 17 June 2011, 13:15:38 UTC
eaca5c8 Issue #10883: test_urllib2net closes socket explicitly 17 June 2011, 12:53:02 UTC
a4c45d7 Issue #12133: fix a ResourceWarning in urllib.request AbstractHTTPHandler.do_open() of urllib.request closes the HTTP connection if its getresponse() method fails with a socket error. Patch written by Ezio Melotti. 17 June 2011, 12:01:18 UTC
0f83b15 Issue #12310: finalize the old process after _run_after_forkers() multiprocessing: Process._bootstrap() keeps a reference to the old process to delay its finalization until after _run_after_forkers() as been executed. This change should fix a crash on Mac OS X Tiger when a lock is released after a fork. Patch written by Charles-François Nataliv and Antoine Pitrou. 17 June 2011, 10:31:49 UTC
b4cfa3a merge heads 16 June 2011, 23:51:24 UTC
back to top