- 06 Oct, 1997 17 commits
-
-
Fred Drake authored
things come together.
-
Guido van Rossum authored
Print the author with the revision date and filename.
-
Fred Drake authored
front of temporary names in the module namespace.
-
Guido van Rossum authored
-
Fred Drake authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
- Change the code that looks for robots.txt to always look in /, even if the "root" path is somewhere deep down below. - Add link processing in <AREA> tags. - Change safeclose() to avoid crashing when the file has no geturl() method.
-
Barry Warsaw authored
-
Barry Warsaw authored
method.
-
Barry Warsaw authored
__getitem__(). This method never raises an exception; if the key is not in the dictionary, the second (optional) argument is returned. If the second argument is not provided and the key is missing, None is returned. mapp_methods: added "get" method.
-
Fred Drake authored
This allows stuff like this out of the box: try: ... except socket.error, (code, msg): ...
-
Guido van Rossum authored
The new re module was written by Andrew Kuchling and uses the pcre code in ../Modules/. The old re module has been renamed to re1, just in case you need it for comparison.
-
Guido van Rossum authored
This code is written by Philip Hazel and Andrew Kuchling. It requires a new "re.py" module, too.
-
Fred Drake authored
-
Guido van Rossum authored
-
Guido van Rossum authored
$(MACHDEP) being just the platform name, without "plat-" prefix... (To be precise, the libainstall target was totally broken.)
-
- 05 Oct, 1997 8 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
and slice.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
the interfaces defined in import.h.
-
Guido van Rossum authored
-
- 04 Oct, 1997 3 commits
-
-
Guido van Rossum authored
Since there's also an imghdr.py file, I propose to make sndhdr.py the official one. For compatibility, whatsound.py imports * from sndhdr.py.
-
Fred Drake authored
$exec_prefix/lib/python$VERSION/site-packages by default.
-
Guido van Rossum authored
Could be useful for an install target in Misc/Makefile.pre.in.
-
- 03 Oct, 1997 4 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
"None"; this should be equivalent to sys.exit(0).
-
- 02 Oct, 1997 2 commits
-
-
Fred Drake authored
-
Fred Drake authored
-
- 01 Oct, 1997 5 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
with an instance of a derived class B would really raise an A, not a B. Since Barry fixed this anomalous behaviour, I though I might as well fix the test! (Hmm, Barry, did you not run the tests or did you miss that test_opcodes failed?)
-
Guido van Rossum authored
-
Guido van Rossum authored
(1) Use PyErr_NewException("module.class", NULL, NULL) to create the exception object. (2) Remove all calls to Py_FatalError(); instead, return or ignore the errors -- the import code now checks PyErr_Occurred() after calling a module's init function, so it's no longer a fatal error for the initialization to fail. Also did some small cleanups, e.g. removed unnecessary test for "already initialized" from initfpectl(), and unified initposix()/initnt(). I haven't checked this very thoroughly, so while the changes are pretty trivial -- beware of untested code!
-
- 30 Sep, 1997 1 commit
-
-
Guido van Rossum authored
plat-win, get rid of test (which is now a package).
-