summaryrefslogtreecommitdiffstats
path: root/Python/import.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* SF bug #438295: [Windows] __init__.py cause strange behaviorTim Peters2001-07-051-11/+28
* SF bug #417093: Case sensitive import: dir and .py file w/ same nameTim Peters2001-04-291-8/+5
* Iterators phase 1. This comprises:Guido van Rossum2001-04-201-1/+1
* split long lineJeremy Hylton2001-04-131-1/+2
* Case-checking was broken on the Macintosh. Fixed.Jack Jansen2001-03-201-3/+2
* Add some spaces around the "=" in assignments.Fred Drake2001-03-061-2/+2
* RISCOS changes by dschwertberger.Guido van Rossum2001-03-021-0/+58
* Thanks to Steven Majewski, finally putting MacOS X imports to bed for 2.1b1.Tim Peters2001-03-021-9/+3
* More MacOSX fiddling. As noted in a comment, I believe all variationsTim Peters2001-03-011-18/+37
* More fiddling w/ the new-fangled Mac import code.Tim Peters2001-03-011-5/+9
* Suppress a compiler warning under OpenVMS; time_t is unsigned on (at least)Fred Drake2001-03-011-2/+2
* Remove extra close curly in code #ifdef'ed out on my box.Tim Peters2001-03-011-1/+0
* In Steven's apparent absence, check in *something* with a non-zero chanceTim Peters2001-03-011-35/+40
* Ack -- my eyes are getting bleary. Typos in the comment typo repairs.Tim Peters2001-02-281-1/+1
* Comment typos.Tim Peters2001-02-281-2/+2
* Implement PEP 235: Import on Case-Insensitive Platforms.Tim Peters2001-02-281-138/+87
* The code in PyImport_Import() tried to save itself a bit of work andGuido van Rossum2001-02-201-13/+7
* This modified version of a patch by Thomas Heller allows __import__Marc-André Lemburg2001-02-091-8/+9
* bump the magic number; the compiler has changed since 2.1a1Jeremy Hylton2001-02-021-1/+1
* Steve Majewski's patch #103495, MatchFilename() and find_module()Barry Warsaw2001-02-021-0/+53
* It's unclear whether PyMarshal_XXX() are part of the public or private API.Tim Peters2001-01-281-1/+1
* PEP 227 implementationJeremy Hylton2001-01-251-1/+1
* Move distributed and duplicated config for stat() and fstat() into pyport.h.Tim Peters2001-01-181-19/+0
* SF Patch #103154 by jlt63: Cygwin Check Import Case Patch.Guido van Rossum2001-01-101-1/+13
* Rip out DOS-8x3 support.Guido van Rossum2000-11-131-17/+2
* _PyImport_Fini(): Closed small memory leak when an embedded app callsBarry Warsaw2000-10-031-0/+2
* The 2.0b2 change to write .pyc files in exclusive mode (if possible)Tim Peters2000-09-291-1/+6
* On Unix, use O_EXCL when creating the .pyc/.pyo files, to avoid a race conditionGuido van Rossum2000-09-201-1/+31
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* Replace the run-time 'future-bytecode-stream-inspection' hack to find outThomas Wouters2000-08-271-2/+2
* Support for three-token characters (**=, >>=, <<=) which was written byThomas Wouters2000-08-241-1/+1
* Thomas reminds me to bump the MAGIC number for the extended printBarry Warsaw2000-08-211-1/+1
* Apply SF patch #101135, adding 'import module as m' and 'from module importThomas Wouters2000-08-171-1/+1