- 14 Jun, 2016 7 commits
-
-
Martin Panter authored
-
Martin Panter authored
-
Martin Panter authored
-
Martin Panter authored
Replace os.popen() with subprocess.Popen. Based on patch by Victor Stinner. If the "gcc", "cc" or "objdump" command is not available, the code was supposed to raise an OSError exception. But there was a bug in the code. The shell code returns the exit code 10 if the required command is missing, and the code tries to check for the status 10. The problem is that os.popen() doesn't return the exit code directly, but a status which should be processed by os.WIFEXITED() and os.WEXITSTATUS(). In practice, the exception was never raised. The OSError exception was not documented and ctypes.util.find_library() is expected to return None if the library is not found.
-
Martin Panter authored
Based on patch by Serhiy Storchaka.
-
Ned Deily authored
-
Ned Deily authored
-
- 13 Jun, 2016 16 commits
-
-
Martin Panter authored
-
Berker Peksag authored
-
Berker Peksag authored
Patch by Gareth Rees.
-
Berker Peksag authored
-
Berker Peksag authored
-
Larry Hastings authored
-
Larry Hastings authored
-
Larry Hastings authored
-
doko@ubuntu.com authored
exposed on the API which are not implemented on GNU/Hurd. They would not work at runtime anyway.
-
Serhiy Storchaka authored
and recognizirable.
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
Martin Panter authored
-
Larry Hastings authored
-
Larry Hastings authored
-
Martin Panter authored
-
- 12 Jun, 2016 17 commits
-
-
Brett Cannon authored
-
Brett Cannon authored
-
Terry Jan Reedy authored
-
Berker Peksag authored
-
Berker Peksag authored
Update current tests that use old pattern with assertRaises to make them more maintainable.
-
Brett Cannon authored
-
Berker Peksag authored
-
Berker Peksag authored
-
Serhiy Storchaka authored
Patch by Demur Rumed.
-
Serhiy Storchaka authored
-
Berker Peksag authored
-
Berker Peksag authored
-
Berker Peksag authored
-
Berker Peksag authored
-
Serhiy Storchaka authored
functools.partial objects.
-
Serhiy Storchaka authored
functools.partial objects.
-
Berker Peksag authored
-