COMMITS
/ Python/import.c July 11, 2003
F
- fix typo
Fred Drake committed
June 16, 2003
N
Don't use the module object setattr when importing submodules. Instead,
Neil Schemenauer committed
March 23, 2003
N
SF patch #708201, unchecked return value in import.c by Jason Harper
Neal Norwitz committed
February 17, 2003
N
Remove PyArg_ParseTuple() for methods which take no args,
Neal Norwitz committed
February 12, 2003
N
Cleanup from patch #683257:
Neal Norwitz committed
G
Provide access to the import lock, fixing SF bug #580952. This is
Guido van Rossum committed
January 24, 2003
December 30, 2002
J
PEP 302 + zipimport:
Just van Rossum committed
December 25, 2002
J
Backing out patch #642578 in anticipation of final acceptance of PEP 302.
Just van Rossum committed
December 13, 2002
J
Added missing casts.
Jack Jansen committed
December 6, 2002
M
Patch #614055: Support OpenVMS.
Martin v. Löwis committed
November 29, 2002
J
Slightly improved version of patch #642578: "Expose PyImport_FrozenModules
Just van Rossum committed
August 31, 2002
G
Because MWH changed the bytecode again, moved the magic number *back*
Guido van Rossum committed
August 15, 2002
M
This is my patch
Michael W. Hudson committed
June 30, 2002
M
Patch #569753: Remove support for WIN16.
Martin v. Löwis committed
June 17, 2002
W
Apply diff2.txt from SF patch http://www.python.org/sf/566999
Walter Dörwald committed
June 14, 2002
N
Fix SF bug # 561858 Assertion with very long lists
Neal Norwitz committed
June 13, 2002
M
Patch #568124: Add doc string macros.
Martin v. Löwis committed
May 30, 2002
G
imp_load_module(): correct and comment the sense of the test for '+'
Guido van Rossum committed
J
Cover a few corners in the 'U' mode integration to make imp work.
Jeremy Hylton committed
May 28, 2002
J
File modes in filedescr entries are also passed to Python, so we now put "U"
Jack Jansen committed
April 14, 2002
J
Mass checkin of universal newline support.
Jack Jansen committed
April 11, 2002
J
Got rid of ifdefs for long-obsolete GUSI versions.
Jack Jansen committed
April 9, 2002
G
is_builtin() is not a Boolean -- it can return -1, 0, 1. [SF #541652]
Guido van Rossum committed
April 7, 2002
G
Return bools from functions named is_<whatever>().
Guido van Rossum committed
March 31, 2002
N
Use symbolic METH_VARARGS instead of 1 for ml_flags
Neal Norwitz committed
March 29, 2002
T
Remove the CACHE_HASH and INTERN_STRINGS preprocessor symbols.
Tim Peters committed
February 26, 2002
A
OS/2 EMX port changes (Python part of patch #450267):
Andrew MacIntyre committed
February 7, 2002
M
Fix to the UTF-8 encoder: it failed on 0-length input strings.
Marc-André Lemburg committed
January 12, 2002
M
Include <unistd.h> in Python.h. Fixes #500924.
Martin v. Löwis committed
November 18, 2001
T
Since the MAGIC number scheme is going to break on January 1st, document
Tim Peters committed
October 30, 2001
October 25, 2001
F
Use PyDict_Copy() and PyDict_Update() instead of using PyObject_CallMethod()
Fred Drake committed
October 24, 2001
G
SF patch #474590 -- RISC OS support
Guido van Rossum committed
October 18, 2001
G
First part of SF patch #416704: More robust freeze, by Toby Dickenson.
Guido van Rossum committed
October 4, 2001
G
Remove a couple of unused local variables (bug #445960, compiler warnings
Greg Ward committed
August 30, 2001
T
Add a new function imp.lock_held(), and use it to skip test_threaded_import
Tim Peters committed
August 13, 2001
B
Fixed typo in comment leading up to _PyImport_FixupExtension().
Barry Warsaw committed
August 8, 2001
M
Put conditional S_IFMT definition into pyport.h.
Martin v. Löwis committed
M
Put conditional S_ISDIR definition(s) into pyport.h.
Martin v. Löwis committed
August 4, 2001
T
Derived from SF patch #446899 Permit import of .pyw under Windows, from
Tim Peters committed
August 2, 2001
T
Merge of descr-branch back into trunk.
Tim Peters committed
July 23, 2001
N
Add -E command line switch (ignore environment variables like PYTHONHOME
Neil Schemenauer committed
G
SF Patch #441791, with changes: when "import foo.bar" fails with an
Guido van Rossum committed
July 5, 2001
T
SF bug #438295: [Windows] __init__.py cause strange behavior
Tim Peters committed
April 29, 2001
T
SF bug #417093: Case sensitive import: dir and .py file w/ same name
Tim Peters committed
April 20, 2001
G
Iterators phase 1. This comprises:
Guido van Rossum committed
April 13, 2001
J
split long line
Jeremy Hylton committed
March 20, 2001
J
Case-checking was broken on the Macintosh. Fixed.
Jack Jansen committed
March 6, 2001
F
Add some spaces around the "=" in assignments.
Fred Drake committed