- 03 Tem, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 01 Tem, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
unicode paths with embedded null character on Windows instead of silently truncate them.
-
- 30 Haz, 2016 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Based on patch by Gabriel Genellina.
-
Victor Stinner yazdı
Patch written by R. David Murray.
-
- 27 Haz, 2016 1 kayıt (commit)
-
-
Steve Dower yazdı
-
- 26 Haz, 2016 2 kayıt (commit)
-
-
Terry Jan Reedy yazdı
-
Serhiy Storchaka yazdı
* trace_vdelete() with wrong mode no longer break tracing * trace_vinfo() now always returns a list of pairs of strings
-
- 25 Haz, 2016 4 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
- 24 Haz, 2016 2 kayıt (commit)
-
-
Steve Dower yazdı
-
Serhiy Storchaka yazdı
-
- 23 Haz, 2016 3 kayıt (commit)
-
-
Terry Jan Reedy yazdı
-
Serhiy Storchaka yazdı
-
Martin Panter yazdı
-
- 22 Haz, 2016 5 kayıt (commit)
-
-
Senthil Kumaran yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
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ı
-
- 15 Haz, 2016 1 kayıt (commit)
-
-
Zachary Ware yazdı
-
- 11 Haz, 2016 8 kayıt (commit)
-
-
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.
-
- 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ı
-