summaryrefslogtreecommitdiffstats
path: root/Python/import.c
Commit message (Collapse)AuthorAgeFilesLines
* * Makefile: cosmeticsGuido van Rossum1992-08-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | * socketmodule.c: get rid of makepair(); fix makesocketaddr to fix broken recvfrom() * socketmodule: get rid of getStrarg() * ceval.h: move eval_code() to new file eval.h, so compile.h is no longer needed. * ceval.c: move thread comments to ceval.h; always make save/restore thread functions available (for dynloaded modules) * cdmodule.c, listobject.c: don't include compile.h * flmodule.c: include ceval.h * import.c: include eval.h instead of ceval.h * cgen.py: add forground(); noport(); winopen(""); to initgl(). * bltinmodule.c, socketmodule.c, fileobject.c, posixmodule.c, selectmodule.c: adapt to threads (add BGN/END SAVE macros) * stdwinmodule.c: adapt to threads and use a special stdwin lock. * pythonmain.c: don't include getpythonpath(). * pythonrun.c: use BGN/END SAVE instead of direct calls; also more BGN/END SAVE calls etc. * thread.c: bigger stack size for sun; change exit() to _exit() * threadmodule.c: use BGN/END SAVE macros where possible * timemodule.c: adapt better to threads; use BGN/END SAVE; add longsleep internal function if BSD_TIME; cosmetics
* Copyright for 1992 addedGuido van Rossum1992-04-051-1/+1
|
* Print messages about where from modules are imported when -v is given.Guido van Rossum1992-03-271-2/+27
|
* Move SEP to osdefs.h. Use MAXPATHLEN from osdefs.h.Guido van Rossum1992-02-261-15/+2
|
* getbinaryname is now part of dl_loadmod.Guido van Rossum1992-01-261-63/+2
|
* Support for dynamic loading added.Guido van Rossum1992-01-191-5/+132
|
* Use IOError and ImportError when import fails.Guido van Rossum1991-12-241-4/+8
|
* Change RuntimeError into IOError when module file not found on reload.Guido van Rossum1991-12-161-1/+1
|
* New magic word; and check it.Guido van Rossum1991-12-161-3/+8
|
* Use more dict2 functions./Guido van Rossum1991-08-161-4/+6
|
* Generalize to macintosh.Guido van Rossum1991-06-241-5/+1
|
* Support ".pyc" files: cached compilation results.Guido van Rossum1991-06-041-5/+72
| | | | (Similar to Emacs ".elc" files.)
* Pre-define MS-DOS separatorGuido van Rossum1991-05-051-0/+4
|
* Added forward declaration (to satisfy Standard C).Guido van Rossum1991-04-031-0/+3
|
* Added copyright notice.Guido van Rossum1991-02-191-0/+24
|
* Call the init function of a built-in module here.Guido van Rossum1991-02-191-2/+31
| | | | ,
* "Compiling" versionGuido van Rossum1990-12-201-191/+99
|
* Add extra DECREF.Guido van Rossum1990-11-181-0/+1
|
* Added reload() functionality.Guido van Rossum1990-10-261-21/+66
|
* Initial revisionGuido van Rossum1990-10-141-0/+252