summaryrefslogtreecommitdiffstats
path: root/Python/import.c
Commit message (Expand)AuthorAgeFilesLines
* Changed random calls to PyThreadState_Get() to use the macroNicholas Bastin2004-03-241-2/+2
* Decref all if ensure_fromlist fails. Fixes #876533.Martin v. Löwis2004-03-231-2/+3
* Add comment to mollify Tim.Jeremy Hylton2004-01-021-0/+2
* Getting rid of all the code inside #ifdef macintosh too.Jack Jansen2003-11-201-94/+0
* Fix a bunch of typos in documentation, docstrings and comments.Walter Dörwald2003-10-201-1/+1
* Bug #794140: cygwin builds do not embedJason Tishler2003-09-041-1/+1
* - fix typoFred Drake2003-07-111-1/+1
* Don't use the module object setattr when importing submodules. Instead,Neil Schemenauer2003-06-161-18/+38
* SF patch #708201, unchecked return value in import.c by Jason HarperNeal Norwitz2003-03-231-0/+2
* Remove PyArg_ParseTuple() for methods which take no args,Neal Norwitz2003-02-171-23/+13
* Cleanup from patch #683257:Neal Norwitz2003-02-121-4/+7
* Provide access to the import lock, fixing SF bug #580952. This isGuido van Rossum2003-02-121-6/+52
* MacPython-OS9 specific fix: If there are non-string items on sys.path don't t...Jack Jansen2003-01-241-15/+18
* PEP 302 + zipimport:Just van Rossum2002-12-301-19/+236
* Backing out patch #642578 in anticipation of final acceptance of PEP 302.Just van Rossum2002-12-251-147/+0
* Added missing casts.Jack Jansen2002-12-131-2/+2
* Patch #614055: Support OpenVMS.Martin v. Löwis2002-12-061-2/+5
* Slightly improved version of patch #642578: "Expose PyImport_FrozenModulesJust van Rossum2002-11-291-0/+147
* Because MWH changed the bytecode again, moved the magic number *back*Guido van Rossum2002-08-311-1/+6
* This is my patchMichael W. Hudson2002-08-151-1/+5
* Patch #569753: Remove support for WIN16.Martin v. Löwis2002-06-301-5/+5
* Apply diff2.txt from SF patch http://www.python.org/sf/566999Walter Dörwald2002-06-171-7/+29
* Fix SF bug # 561858 Assertion with very long listsNeal Norwitz2002-06-141-2/+2
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-28/+21
* imp_load_module(): correct and comment the sense of the test for '+'Guido van Rossum2002-05-301-2/+7
* Cover a few corners in the 'U' mode integration to make imp work.Jeremy Hylton2002-05-301-8/+14
* File modes in filedescr entries are also passed to Python, so we now put "U"Jack Jansen2002-05-281-4/+7
* Mass checkin of universal newline support.Jack Jansen2002-04-141-3/+3
* Got rid of ifdefs for long-obsolete GUSI versions.Jack Jansen2002-04-111-21/+0
* is_builtin() is not a Boolean -- it can return -1, 0, 1. [SF #541652]Guido van Rossum2002-04-091-1/+1
* Return bools from functions named is_<whatever>().Guido van Rossum2002-04-071-4/+4
* Use symbolic METH_VARARGS instead of 1 for ml_flagsNeal Norwitz2002-03-311-16/+16
* Remove the CACHE_HASH and INTERN_STRINGS preprocessor symbols.Tim Peters2002-03-291-2/+0
* OS/2 EMX port changes (Python part of patch #450267):Andrew MacIntyre2002-02-261-0/+76
* Fix to the UTF-8 encoder: it failed on 0-length input strings.Marc-André Lemburg2002-02-071-1/+20
* Include <unistd.h> in Python.h. Fixes #500924.Martin v. Löwis2002-01-121-4/+0
* Since the MAGIC number scheme is going to break on January 1st, documentTim Peters2001-11-181-4/+16
* On the macintosh don't take a quick exit in find_module() for frozen submodul...Jack Jansen2001-10-301-0/+8
* Use PyDict_Copy() and PyDict_Update() instead of using PyObject_CallMethod()Fred Drake2001-10-251-5/+3
* SF patch #474590 -- RISC OS supportGuido van Rossum2001-10-241-7/+31
* First part of SF patch #416704: More robust freeze, by Toby Dickenson.Guido van Rossum2001-10-181-5/+23
* Remove a couple of unused local variables (bug #445960, compiler warningsGreg Ward2001-10-041-4/+2
* Add a new function imp.lock_held(), and use it to skip test_threaded_importTim Peters2001-08-301-0/+19
* Fixed typo in comment leading up to _PyImport_FixupExtension().Barry Warsaw2001-08-131-1/+1
* Put conditional S_IFMT definition into pyport.h.Martin v. Löwis2001-08-081-5/+0
* Put conditional S_ISDIR definition(s) into pyport.h.Martin v. Löwis2001-08-081-4/+0
* Derived from SF patch #446899 Permit import of .pyw under Windows, fromTim Peters2001-08-041-5/+14
* Merge of descr-branch back into trunk.Tim Peters2001-08-021-2/+5
* Add -E command line switch (ignore environment variables like PYTHONHOMENeil Schemenauer2001-07-231-4/+4
* SF Patch #441791, with changes: when "import foo.bar" fails with anGuido van Rossum2001-07-231-4/+16