- 08 Jul, 2011 4 commits
-
-
Antoine Pitrou authored
an overzealous DNS service (e.g. OpenDNS) redirects to a placeholder Web site.
-
Antoine Pitrou authored
DNS service (e.g. OpenDNS) resolves a non-existent domain name. The test is now skipped instead.
-
Victor Stinner authored
The Python signal handler for SIGABRT is not called on os.abort() (only if the signal is raised manually or sent by another process). Patch by Kamil Kisiel.
-
Victor Stinner authored
Python 3.1. callable() is again supported in Python 3.2.
-
- 06 Jul, 2011 1 commit
-
-
Ned Deily authored
OS X window manager connection in tk tests, use OS X Application Services API calls instead.
-
- 05 Jul, 2011 8 commits
-
-
Ned Deily authored
-
Ned Deily authored
-
Victor Stinner authored
-
Victor Stinner authored
subprocess.Popen.communicate() now also handles EINTR errors if the process has only one pipe.
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
os.write() clamp the length to INT_MAX on Windows.
-
Benjamin Peterson authored
-
- 04 Jul, 2011 8 commits
-
-
Senthil Kumaran authored
-
Victor Stinner authored
On FreeBSD, the SIGALRM signal is sometimes received by the reader thread.
-
Ned Deily authored
-
Ned Deily authored
test_tk or test_ttk_guionly under a username that is not currently logged in to the console windowserver (as may be the case under buildbot or ssh).
-
Ned Deily authored
-
Benjamin Peterson authored
-
Victor Stinner authored
shutdown, if globals()['__file__'] is None.
-
Senthil Kumaran authored
-
- 03 Jul, 2011 1 commit
-
-
Senthil Kumaran authored
-
- 02 Jul, 2011 2 commits
-
-
Charles-François Natali authored
wasn't enabled at first.
-
Charles-François Natali authored
the garbage collector while the Heap lock is held.
-
- 01 Jul, 2011 2 commits
-
-
Antoine Pitrou authored
-
Victor Stinner authored
with known OS bugs Share the list of platforms with known OS bugs with other tests. Patch written by Charles-François Natali.
-
- 29 Jun, 2011 7 commits
-
-
Raymond Hettinger authored
-
Ned Deily authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Ned Deily authored
-
Ned Deily authored
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.
-
Ned Deily authored
test_build_ext.
-
- 28 Jun, 2011 4 commits
-
-
Guido van Rossum authored
-
Ned Deily authored
test_build_ext of test_distutils is no longer silently skipped when run outside of a build directory.
-
Ned Deily authored
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)
-
Ned Deily authored
on Mac OS X. (Patch by Ronald Oussoren)
-
- 27 Jun, 2011 3 commits
-
-
Benjamin Peterson authored
-
Benjamin Peterson authored
A patch from Vincent Legoll.
-
Benjamin Peterson authored
-