- 04 Haz, 2016 1 kayıt (commit)
-
-
doko@ubuntu.com yazdı
-
- 02 Haz, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
-
- 26 Nis, 2016 1 kayıt (commit)
-
-
Stefan Krah yazdı
-
- 19 Nis, 2016 1 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #21668: Link audioop, _datetime, _ctypes_test modules to libm, except on Mac OS X. Patch written by Xavier de Gaye.
-
- 24 Şub, 2016 1 kayıt (commit)
-
-
Ned Deily yazdı
As of Xcode 7, SDKs for Apple platforms now include textual-format stub libraries whose file names have a .tbd extension rather than the standard OS X .dylib extension. The Apple compiler tool chain handles these stub libraries transparently and the installed system shared libraries are still .dylibs. However, the new stub libraries cause problems for third-party programs that support building with Apple SDKs and make build-time decisions based on the presence or paths of system-supplied shared libraries in the SDK. In particular, building Python itself with an SDK fails to find system-supplied libraries during setup.py's build of standard library extension modules. The solution is to have find_library_file() in Distutils search for .tbd files, along with the existing types (.a, .so, and .dylib). Patch by Tim Smith.
-
- 11 Şub, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
to format short Python version.
-
- 03 Şub, 2016 2 kayıt (commit)
-
-
Martin Panter yazdı
-
Martin Panter yazdı
-
- 03 Haz, 2015 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 23 May, 2015 1 kayıt (commit)
-
-
Nick Coghlan yazdı
Known limitations of the current implementation: - documentation changes are incomplete - there's a reference leak I haven't tracked down yet The leak is most visible by running: ./python -m test -R3:3 test_importlib However, you can also see it by running: ./python -X showrefcount Importing the array or _testmultiphase modules, and then deleting them from both sys.modules and the local namespace shows significant increases in the total number of active references each cycle. By contrast, with _testcapi (which continues to use single-phase initialisation) the global refcounts stabilise after a couple of cycles.
-
- 01 Eki, 2014 1 kayıt (commit)
-
-
Berker Peksag yazdı
-
- 30 Eyl, 2014 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Remove pointless "vile hack" that can cause the build step to fail when some extension modules can't be imported. See issue #5309 for the build failures, issue #458343 for the original motivation.
-
- 27 Eyl, 2014 1 kayıt (commit)
-
-
Berker Peksag yazdı
Patch by Jonathan Hosmer.
-
- 26 Eyl, 2014 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
option to enable parallel building of extension modules.
-
- 10 Agu, 2014 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
Patch from Stefan Krah.
-
- 25 Haz, 2014 1 kayıt (commit)
-
-
Ned Deily yazdı
-
- 30 May, 2014 1 kayıt (commit)
-
-
Brett Cannon yazdı
Along the way, dismantle importlib._bootstrap._SpecMethods as it was no longer relevant and constructing the new function required partially dismantling the class anyway.
-
- 30 Nis, 2014 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
Patch by Lukas Vacek.
-
- 17 Nis, 2014 1 kayıt (commit)
-
-
doko@ubuntu.com yazdı
include directories if they aren't already being searched. This avoids an explicit runtime library dependency.
-
- 15 Mar, 2014 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 04 Şub, 2014 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 04 Ock, 2014 1 kayıt (commit)
-
-
Eric Snow yazdı
-
- 03 Ock, 2014 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Patch by Christian Heimes, with modifications.
-
- 24 Kas, 2013 1 kayıt (commit)
-
-
Stefan Krah yazdı
_decimal: o Make all "mpd_t to C integer" conversion functions available in both the 64-bit and the 32-bit versions. o Make all mixed mpd_t/C integer arithmetic functions available in the 32-bit version. o Better handling of __STDC_LIMIT_MACROS for C++ users. o Add struct tags (at the request of C++ users). 2) Check for libmpdec.so.2 if --with-system-libmpdec is used.
-
- 23 Kas, 2013 1 kayıt (commit)
-
-
Larry Hastings yazdı
computes the stack effect of bytecode instructions.
-
- 25 Eki, 2013 1 kayıt (commit)
-
-
Ned Deily yazdı
when building _tkinter. configure has two new options; if used, both must be specified: ./configure \ --with-tcltk-includes="-I/opt/local/include" \ --with-tcltk-libs="-L/opt/local/lib -ltcl8.5 -ltk8.5" In addition, the options can be overridden with make: make \ TCLTK_INCLUDES="-I/opt/local/include" \ TCLTK_LIBS="-L/opt/local/lib -ltcl8.6 -ltk8.6"
-
- 19 Eki, 2013 1 kayıt (commit)
-
-
Ned Deily yazdı
-
- 06 Eyl, 2013 1 kayıt (commit)
-
-
Ned Deily yazdı
when building _tkinter. configure has two new options; if used, both must be specified: ./configure \ --with-tcltk-includes="-I/opt/local/include" \ --with-tcltk-libs="-L/opt/local/lib -ltcl8.5 -ltk8.5" In addition, the options can be overridden with make: make \ TCLTK_INCLUDES="-I/opt/local/include" \ TCLTK_LIBS="-L/opt/local/lib -ltcl8.6 -ltk8.6"
-
- 02 Agu, 2013 1 kayıt (commit)
-
-
Ned Deily yazdı
-
- 15 Tem, 2013 1 kayıt (commit)
-
-
Ronald Oussoren yazdı
The "Gestalt" function on OSX is deprecated (starting with OSX 10.8), remove its usage from the stdlib. The patch removes a number of private functions and a private module, but does not change the public API. The removed code was effectively dead, the platform module has used other code to fetch the OSX version for years and could only use on the Gestalt-based code as a fallback. That fallback can only trigger on broken OSX installs (that is, someone has removed parts of the system install)
-
- 12 Tem, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
building Python but having some optional module which didn't build. Patch by Yogesh Chaudhari.
-
- 15 Haz, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 28 Mar, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 21 Mar, 2013 1 kayıt (commit)
-
-
doko@ubuntu.com yazdı
two makefile macros SHLIB_SUFFIX and EXT_SUFFIX. SO now has the value of SHLIB_SUFFIX again (as in 2.x and 3.1). The SO macro is removed in 3.4.
-
- 19 Mar, 2013 2 kayıt (commit)
-
-
doko@ubuntu.com yazdı
db-5.x, and dropping support for db-4.1 and db-4.2.
-
Kristján Valur Jónsson yazdı
when it needs support from timemodule (which is a .so on linux): link in timemodule.c for the required functions.
-
- 07 Mar, 2013 1 kayıt (commit)
-
-
Stefan Krah yazdı
-
- 23 Şub, 2013 2 kayıt (commit)
-
-
Petri Lehtinen yazdı
-
Petri Lehtinen yazdı
-
- 09 Şub, 2013 1 kayıt (commit)
-
-
Christian Heimes yazdı
-