- 22 Haz, 2016 2 kayıt (commit)
-
-
Martin Panter yazdı
-
Martin Panter yazdı
-
- 21 Haz, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
* Set but unused variable in Parser/pgen.c in non-debug builds. Patch by Christian Heimes. * Unused static function in Modules/readline.c. Patch by Georg Brandl. * main_window unused in Modules/tkappinit.c. Patch by Gregory P. Smith. * Dead assignment in Modules/_ctypes/cfield.c. Extracted from patch by Brett Cannon. * Expression result unused in PyObject_INIT macro expansions. Based on patches by Christian Heimes. * Load expat_config.h and therefore pyconfig.h before C stdlib headers are loaded. This silences pre-processor warnings including '_POSIX_C_SOURCE redefined'. Extracted from patch by Christian Heimes.
-
- 20 Haz, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
-
- 18 Haz, 2016 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
represented as a compination of known flags.
-
Martin Panter yazdı
-
- 16 Eki, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
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 Haz, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 16 Haz, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 15 Haz, 2016 3 kayıt (commit)
-
-
Zachary Ware yazdı
-
Serhiy Storchaka yazdı
-
Georg Brandl yazdı
-
- 01 Haz, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
Also synchronize with Python 3 examples. Based on patches by Matthew Boehm and Alexander Schrijver.
-
- 14 Haz, 2016 5 kayıt (commit)
-
-
Serhiy Storchaka yazdı
by Jelle Zijlstra.
-
Serhiy Storchaka yazdı
containing spaces.
-
Martin Panter yazdı
-
Terry Jan Reedy yazdı
Previously, when IDLE was started from a console or by import, a cascade of warnings was emitted. Patch by Serhiy Storchaka.
-
Ned Deily yazdı
-
- 12 Haz, 2016 9 kayıt (commit)
-
-
Berker Peksag yazdı
-
Serhiy Storchaka yazdı
functools.partial objects.
-
Serhiy Storchaka yazdı
for consistency with Python 3.
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Martin Panter yazdı
-
Martin Panter yazdı
-
Martin Panter yazdı
Implementation by Sean Rodman; test by Kaushik Nadikuditi.
-
Martin Panter yazdı
-
- 11 Haz, 2016 9 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Terry Jan Reedy yazdı
-
Benjamin Peterson yazdı
-
Terry Jan Reedy yazdı
-
Terry Jan Reedy yazdı
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 Haz, 2016 1 kayıt (commit)
-
-
- 02 Haz, 2016 1 kayıt (commit)
-
-
Tommy Beadle yazdı
-
- 10 Haz, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
-
- 03 Haz, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
This matches the usage by BufferedReader, BufferedWriter, etc. Also document and test that the write() methods should only access their argument before they return.
-