summaryrefslogtreecommitdiffstats
path: root/Python/import.c
Commit message (Expand)AuthorAgeFilesLines
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Trent Mick <trentm@activestate.com>:Fred Drake2000-06-301-13/+31
* another typo caught by Rob HooftJeremy Hylton2000-06-301-1/+1
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-9/+7
* Marc-Andre Lemburg:Guido van Rossum2000-05-011-8/+20
* Robin Becker: The following patch seems to fix a module case bug inGuido van Rossum2000-05-011-4/+4
* As Marc-Andre Lemburg points out, the magic number needs to changeGuido van Rossum2000-04-281-1/+1
* Jack Jansen: The new version of the GUSI i/o library on the MacintoshGuido van Rossum2000-04-241-2/+2
* Massive patch by Skip Montanaro to add ":name" to as manyGuido van Rossum2000-02-291-15/+15
* Cleanup patches from Greg Stein:Guido van Rossum1999-12-221-0/+8
* In _PyImport_Init(), dynamically construct the table of legal suffixesGuido van Rossum1999-12-201-5/+33
* Changes by Mark Hammond for Windows CE. Mostly of the formGuido van Rossum1999-04-071-0/+4
* PyImport_ReloadModule(): Nailed a small memory leak. In theBarry Warsaw1999-01-271-0/+1
* Improve comment for PyImport_Import() as suggested by Bill Tutt.Guido van Rossum1998-12-211-1/+4
* Thanks to Chris Herborth, the thread primitives now have proper Py*Guido van Rossum1998-12-211-7/+7
* Jim Fulton writes:Guido van Rossum1998-10-221-0/+1
* Replace fprintf(stderr, ...) with PySys_WriteStderr(...).Guido van Rossum1998-10-121-22/+22
* Renamed thread.h to pythread.h.Guido van Rossum1998-10-011-1/+1
* While scalling sys.modules, skip entries that don't have string keys,Guido van Rossum1998-10-011-4/+4
* Mac-specific mod to enable aliases on import paths.Guido van Rossum1998-09-141-9/+26
* __file__ used to be always set to the .pyc (or .pyo) file, even ifGuido van Rossum1998-08-251-1/+2
* Patch by Just van Rossum that changes how we search for submodules ofGuido van Rossum1998-08-111-19/+20
* Added handling for Mac code resource modules (Jack Jansen).Guido van Rossum1998-08-061-0/+10
* Changes for BeOS, QNX and long long, by Chris Herborth.Guido van Rossum1998-08-041-1/+1
* Fix two smal memory leaks discovered by Vadim Chugunov.Guido van Rossum1998-07-011-3/+2
* Ignore Windows case check for ALL CAPS 8.3 filesGuido van Rossum1998-06-241-1/+39
* Fix a curious bug: statements like "import sys.time" would succeed,Guido van Rossum1998-05-191-3/+10
* New APIs for embedding applications that want to add their own entriesGuido van Rossum1998-05-141-0/+58
* Reject empty module names -- otherwise __import__("") does somethingGuido van Rossum1998-04-111-0/+5
* Comment out a label on an #endif.Guido van Rossum1998-04-101-1/+1
* Address warnings issued by the MSVC++ compilerGuido van Rossum1998-04-101-1/+1
* Support for frozen packages, matching the revamped Tools/freeze.Guido van Rossum1998-03-051-14/+60
* Oops -- overuse of dabbrev-expand introduced a strange bug, whereGuido van Rossum1998-03-031-1/+1
* Add a single Python-wide (!) lock on import. Only one thread at aGuido van Rossum1998-03-031-8/+71
* Moved clear_carefully() to _PyModule_Clear() in moduleobject.cGuido van Rossum1998-02-191-69/+31
* Small patches to the DJGPP version of check_case().Guido van Rossum1998-02-181-1/+3
* Added DJGPP version of check_case(), by Pit Scrorpion (Hans Nowak).Guido van Rossum1998-02-131-0/+28
* Add case checking feature on import.Guido van Rossum1998-02-131-1/+78
* Added PyImport_ExecCodeModuleEx(), which adds an extra parameter toGuido van Rossum1998-02-111-5/+25
* Two more refinements of the cleanup process.Guido van Rossum1998-02-061-3/+52
* Rewritten PyImport_Cleanup() and its helper, clear_carefully(). TheyGuido van Rossum1998-01-191-12/+98
* Oops! Should've renamed dos_8x3 to dos-8x3 here, too.Guido van Rossum1997-12-171-3/+3
* Jeff Rush: add definition for S_IFMT for VisualAge C/C++ under OS2.Guido van Rossum1997-12-051-0/+5
* New policy for package imports: only a directory containingGuido van Rossum1997-10-311-2/+38
* Instead of using _PyImport_Inittab[] directly, use the new "official"Guido van Rossum1997-10-311-4/+8
* Moved mac-specific speedup to a different place (Jack)Guido van Rossum1997-10-081-5/+5
* Remove unreachable "return 1" at end of ensure_fromlist().Guido van Rossum1997-10-031-1/+1
* Added docstrings. Not for the obsolete functions though.Guido van Rossum1997-09-091-6/+46
* Deleted find_module_in_package and find_module_in_directory -- theyGuido van Rossum1997-09-091-53/+0