- 21 Ara, 2013 1 kayıt (commit)
-
-
Christian Heimes yazdı
-
- 23 Tem, 2013 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 20 Tem, 2013 1 kayıt (commit)
-
-
Christian Heimes yazdı
CID 486250
-
- 04 Eki, 2012 1 kayıt (commit)
-
-
Jesus Cea yazdı
-
- 01 Eki, 2012 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 22 Agu, 2012 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 04 May, 2012 1 kayıt (commit)
-
-
Brett Cannon yazdı
This introduces a new function, imp.extension_suffixes(), which is currently undocumented. That is forthcoming once issue #14657 is resolved and how to expose file suffixes is decided.
-
- 20 Nis, 2012 1 kayıt (commit)
-
-
Brett Cannon yazdı
in Python/dynload_shlibs.c. This should fix the remaining importlib test failure on Windows. Support in AIX and HP-UX will be in a separate checkin.
-
- 14 Nis, 2012 1 kayıt (commit)
-
-
Brett Cannon yazdı
importlib._bootstrap is now frozen into Python/importlib.h and stored as _frozen_importlib in sys.modules. Py_Initialize() loads the frozen code along with sys and imp and then uses _frozen_importlib._install() to set builtins.__import__() w/ _frozen_importlib.__import__().
-
- 20 Şub, 2012 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
This will improve import performance a bit (especially under importlib).
-
- 22 Şub, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
The first argument, fqname, was not used.
-
- 03 Ara, 2010 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 08 Eyl, 2010 1 kayıt (commit)
-
-
Matthias Klose yazdı
to load the one without the SOABI in the name.
-
- 03 Eyl, 2010 1 kayıt (commit)
-
- 09 May, 2010 4 kayıt (commit)
-
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r81032 | antoine.pitrou | 2010-05-09 17:52:27 +0200 (dim., 09 mai 2010) | 9 lines Recorded merge of revisions 81029 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines Untabify C files. Will watch buildbots. ........ ................
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines Untabify C files. Will watch buildbots. ........
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines Untabify C files. Will watch buildbots. ........
-
Antoine Pitrou yazdı
-
- 11 Haz, 2008 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 04 Ock, 2006 1 kayıt (commit)
-
-
Hye-Shik Chang yazdı
-
- 09 Kas, 2005 1 kayıt (commit)
-
-
Neal Norwitz yazdı
It was possible dlerror() returns a NULL pointer, use a default error message in this case.
-
- 03 Eki, 2004 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 25 Mar, 2004 1 kayıt (commit)
-
-
Nicholas Bastin yazdı
-
- 03 May, 2003 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 26 Şub, 2002 1 kayıt (commit)
-
-
Andrew MacIntyre yazdı
Python/ dynload_shlib.c // EMX port emulates dlopen() etc. for DL extensions import.c // changes to support 8.3 DLL name limit (VACPP+EMX) // and case sensitive import semantics importdl.h thread_os2.h
-
- 28 Kas, 2001 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
-
- 18 Eki, 2001 2 kayıt (commit)
-
-
Martin v. Löwis yazdı
199712 didn't have dlfcn.h, or that it wouldn't conflict with the other stuff defined.
-
Martin v. Löwis yazdı
-
- 05 Eyl, 2001 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 18 Tem, 2001 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Add dlopenflags to PyInterpreterState, and use it in dlopen calls.
-
- 10 Ock, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Cygwin Python DLL and Shared Extension Patch). Add module.dll as a valid extension. jlt63 writes: Note that his change essentially backs out the fix for bug #115973. Should ".pyd" be retained instead for posterity?
-
- 25 Eki, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
BSDs) you need a leading underscore in the dlsym() lookup name.
-
- 05 Eki, 2000 1 kayıt (commit)
-
-
Tim Peters yazdı
Tkinter work under Cygwin. Accepted on faith & reasonableness.
-
- 01 Eyl, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
This should match the situation in the 1.6b1 tree.
-
- 30 Haz, 2000 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
- 22 Ara, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
* in import.c, #ifdef out references to dynamic loading based on HAVE_DYNAMIC_LOADING * clean out the platform-specific crud from importdl.c. [ maybe fold this function into import.c and drop the importdl.c file? Greg.] * change GetDynLoadFunc's "funcname" parameter to "shortname". change "name" to "fqname" for clarification. * each GetDynLoadFunc now creates its own funcname value. WARNING: as I mentioned previously, we may run into an issue with a missing "_" on some platforms. Testing will show this pretty quickly, however. * move pathname munging into dynload_shlib.c
-
- 20 Ara, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
file per platform (really: per style of Dl API; e.g. all platforms using dlopen() are grouped together in dynload_shlib.c.). This is part of a set of patches by Greg Stein.
-
- 10 Ara, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Also got rid of the dummy variable, which was last needed in IRIX 4.x.
-
- 09 Ara, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-