- 14 Haz, 2016 9 kayıt (commit)
-
-
Martin Panter yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
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.
-
Martin Panter yazdı
-
Martin Panter yazdı
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 yazdı
Based on patch by Serhiy Storchaka.
-
Ned Deily yazdı
-
- 13 Haz, 2016 6 kayıt (commit)
-
-
Martin Panter yazdı
-
Berker Peksag yazdı
Patch by Gareth Rees.
-
Berker Peksag yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
- 12 Haz, 2016 25 kayıt (commit)
-
-
Berker Peksag yazdı
Update current tests that use old pattern with assertRaises to make them more maintainable.
-
Berker Peksag yazdı
-
Berker Peksag yazdı
-
Berker Peksag yazdı
-
Serhiy Storchaka yazdı
functools.partial objects.
-
Berker Peksag yazdı
Patch by Dave Sawyer.
-
Berker Peksag yazdı
* Connection.execute* methods don't create intermediate cursor objects * Fix description of seq_of_parameters parameter * Clarify that Warning is sqlite3.Warning * sql_script parameter of Cursor.executescript() doesn't accept bytes * Add missing tests * Fix various markup errors Initial patch by Dave Sawyer.
-
Berker Peksag yazdı
-
Berker Peksag yazdı
Initial patch by Jelle Zijlstra.
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
function with generalized unpacking (PEP 448) and conflicting keyword names could cause undefined behavior.
-
Martin Panter yazdı
-
Martin Panter yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Martin Panter yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Martin Panter yazdı
Based on patches by Konstantin Molchanov and Neil Girdhar.
-
Łukasz Langa yazdı
Patch by James Pickering.
-