- 06 Eyl, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
-
- 05 Eyl, 2016 1 kayıt (commit)
-
-
Larry Hastings yazdı
and Windows CE is no longer a relevant platform for Python.
-
- 17 Agu, 2016 1 kayıt (commit)
-
-
Vinay Sajip yazdı
-
- 05 Agu, 2016 1 kayıt (commit)
-
-
Vinay Sajip yazdı
-
- 28 Tem, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
Based on patch by Ville Skyttä.
-
- 14 Tem, 2016 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 18 Haz, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 14 Haz, 2016 1 kayıt (commit)
-
-
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.
-
- 04 Haz, 2016 1 kayıt (commit)
-
-
Kushal Das yazdı
-
- 24 May, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Patch by Demur Rumed.
-
- 15 May, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
* "ctypes" documentation was using Python 2 bytes-str equivalence. * PyImport_FrozenModules is a pointer to const as of Python 3.4
-
- 14 May, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
-
- 24 Nis, 2016 3 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Berker Peksag yazdı
Patch by Jon Dufresne.
-
- 17 Mar, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
This reverts most of revision 3092cf163eb4. The change worked on x86 architectures, but did not work on ARM, probably due to extra ABI flags in the ldconfig output.
-
- 10 Mar, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
Patch by Tamás Bence Gedai.
-
- 29 Ock, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
Also add some more tests. Based on patch by Sye van der Veen.
-
- 26 Kas, 2015 3 kayıt (commit)
-
-
Martin Panter yazdı
-
Martin Panter yazdı
-
Martin Panter yazdı
-
- 13 Kas, 2015 2 kayıt (commit)
-
-
Martin Panter yazdı
-
Martin Panter yazdı
This was a regression caused by revision 1da9630e9b7f. Based on patch by Eryksun.
-
- 09 Kas, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 02 Kas, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 29 Tem, 2015 1 kayıt (commit)
-
-
Victor Stinner yazdı
written by Matthieu Gautier.
-
- 03 Tem, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 13 May, 2015 1 kayıt (commit)
-
-
Zachary Ware yazdı
Comparing equality of list and tuple is always False.
-
- 03 May, 2015 1 kayıt (commit)
-
-
Eric Snow yazdı
-
- 28 Mar, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Free memory, unlock hanging threads.
-
- 14 Mar, 2015 1 kayıt (commit)
-
-
Steve Dower yazdı
-
- 02 Şub, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
and PyObject_AsWriteBuffer().
-
- 17 Ock, 2015 1 kayıt (commit)
-
-
Zachary Ware yazdı
Only happened with oddly capitalized debug executables on Windows. Patch by Claudiu Popa.
-
- 15 Ara, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 05 Kas, 2014 1 kayıt (commit)
-
-
Steve Dower yazdı
Issue #20160: broken ctypes calling convention on MSVC / 64-bit Windows (large structs) Patch by mattip
-
- 01 Kas, 2014 1 kayıt (commit)
-
-
Steve Dower yazdı
-
- 12 Eki, 2014 1 kayıt (commit)
-
-
R David Murray yazdı
Patch by Meador Inge.
-
- 29 Agu, 2014 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Issue #22098: ctypes' BigEndianStructure and LittleEndianStructure now define an empty __slots__ so that subclasses don't always get an instance dict. Patch by Claudiu Popa.
-
- 09 Agu, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
types. Corrected error messages about bytes arguments.
-
- 08 Agu, 2014 1 kayıt (commit)
-
-
Zachary Ware yazdı
-