summaryrefslogtreecommitdiffstats
path: root/Python/import.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Crrected a flow control error that caused the wrong error message whenGuido van Rossum1997-09-091-22/+6
* Added support for __all__, which should be a list of modules to beGuido van Rossum1997-09-081-3/+16
* Bugfix: import A.B from inside package was busted by mark_miss optimization.Guido van Rossum1997-09-071-1/+1
* Significant speedup -- when a submodule imports a global module, add aGuido van Rossum1997-09-061-5/+20
* Fix reload() for package submodules.Guido van Rossum1997-09-061-2/+24
* Phase two of package import. "import a.b.c" and all variants now do theGuido van Rossum1997-09-061-17/+299
* First part of package support.Guido van Rossum1997-09-051-130/+441
* Keep gcc -Wall happyGuido van Rossum1997-08-151-1/+0
* Added Jim Fulton's PyImport_Import(), which calls whateverGuido van Rossum1997-08-141-0/+78
* Use string interning and caching to get speedups on the mac (Jack).Guido van Rossum1997-08-121-1/+17
* New rules for deleting modules. Rather than having an elaborateGuido van Rossum1997-08-051-1/+29
* The last of the mass checkins for separate (sub)interpreters.Guido van Rossum1997-08-021-46/+120
* Removed some variables that are used to exchange data between import.c andGuido van Rossum1997-07-211-2/+2
* Fix problem discovered by Greg McFarlane: when an imported moduleGuido van Rossum1997-07-101-0/+7
* One last rename glitch: import_modules -> _PyImport_Modules.Guido van Rossum1997-05-141-15/+15
* Instead of importing graminit.h whenever one of the three grammar 'root'Guido van Rossum1997-05-071-4/+1
* Oops, forgot one: inittab.Guido van Rossum1997-04-291-7/+7
* Quickly renamed the remaining files -- this directory is done.Guido van Rossum1997-04-291-270/+282
* Keep gcc -Wall and Microsoft VC happy.Guido van Rossum1997-04-111-5/+6
* When -O is given, use ".pyo" instead of ".pyc".Guido van Rossum1997-03-111-1/+9
* New magin number (because of linenumber table).Guido van Rossum1997-01-241-1/+1
* New MAGIC number (code objects have one more item when marshalled).Guido van Rossum1997-01-171-1/+2
* Keep gcc -Wall happy.Guido van Rossum1996-12-051-1/+5
* New permission notice, includes CNRI.Guido van Rossum1996-10-251-13/+20
* PYTHONWIN -> MS_COREDLLGuido van Rossum1996-08-221-1/+1