- 18 Jun, 2016 1 commit
-
-
Martin Panter authored
-
- 16 Oct, 2014 1 commit
-
-
Victor Stinner authored
Replace os.popen() with subprocess.Popen. 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. Based on patch by Victor Stinner.
-
- 17 Jun, 2016 1 commit
-
-
Serhiy Storchaka authored
-
- 16 Jun, 2016 1 commit
-
-
Serhiy Storchaka authored
-
- 15 Jun, 2016 3 commits
-
-
Zachary Ware authored
-
Serhiy Storchaka authored
-
Georg Brandl authored
-
- 01 Jun, 2016 1 commit
-
-
Martin Panter authored
Also synchronize with Python 3 examples. Based on patches by Matthew Boehm and Alexander Schrijver.
-
- 14 Jun, 2016 5 commits
-
-
Serhiy Storchaka authored
by Jelle Zijlstra.
-
Serhiy Storchaka authored
containing spaces.
-
Martin Panter authored
-
Terry Jan Reedy authored
Previously, when IDLE was started from a console or by import, a cascade of warnings was emitted. Patch by Serhiy Storchaka.
-
Ned Deily authored
-
- 12 Jun, 2016 9 commits
-
-
Berker Peksag authored
-
Serhiy Storchaka authored
functools.partial objects.
-
Serhiy Storchaka authored
for consistency with Python 3.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Martin Panter authored
-
Martin Panter authored
-
Martin Panter authored
Implementation by Sean Rodman; test by Kaushik Nadikuditi.
-
Martin Panter authored
-
- 11 Jun, 2016 9 commits
-
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Terry Jan Reedy authored
-
Benjamin Peterson authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
This is how paste work on Windows, Mac, modern Linux apps, and ttk widgets. The exception was X11 tk widgets. Original patch by Serhiy Storchake.
-
- 10 Jun, 2016 1 commit
-
-
https://github.com/python/pythondotorg/issues/945doko@ubuntu.com authored
unused and outdated icons.
-
- 02 Jun, 2016 1 commit
-
-
Tommy Beadle authored
-
- 10 Jun, 2016 1 commit
-
-
Martin Panter authored
-
- 03 Jun, 2016 1 commit
-
-
Martin Panter authored
This matches the usage by BufferedReader, BufferedWriter, etc. Also document and test that the write() methods should only access their argument before they return.
-
- 15 Mar, 2010 1 commit
-
-
Matthias Klose authored
Previous fix was only made to dead and removed code.
-
- 10 Jun, 2016 1 commit
-
-
Martin Panter authored
-
- 02 Jun, 2016 1 commit
-
-
Tommy Beadle authored
-
- 09 Jun, 2016 2 commits
-
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-