- 14 Şub, 2001 13 kayıt (commit)
-
-
Jack Jansen yazdı
-
Jack Jansen yazdı
The new touched() was far too expensive. Re-enabled the old one, the ae-based one is available as touched_ae(). Have to read up on the subject of telling the finder about changes.
-
Jack Jansen yazdı
Got rid of lots of 68k stuff.
-
Jack Jansen yazdı
-
Fred Drake yazdı
(SF bug #132288).
-
Fred Drake yazdı
at least one addition to the set of accepted characters for every release since this module was first added; this should take care of the problem in a more substantial way. This closes SF bug #132288.
-
Thomas Wouters yazdı
-
Tim Peters yazdı
newline at the end if there isn't one already. Expected output has no way to indicate that a trailing newline was not expected, and in the interpreter shell *Python* supplies the trailing newline before printing the next prompt.
-
Tim Peters yazdı
-
Fred Drake yazdı
"innermost last" --> "most recent call last"
-
Andrew M. Kuchling yazdı
Mentioned doctest, difflib, sys._getframe(), and the change to use PyImport_ImportModule() everywhere in C code No more XXX!
-
Andrew M. Kuchling yazdı
-
Tim Peters yazdı
-
- 13 Şub, 2001 4 kayıt (commit)
-
-
Jack Jansen yazdı
-
Ka-Ping Yee yazdı
-
Tim Peters yazdı
-
Guido van Rossum yazdı
/usr/local/bin/python and not #! /usr/bin/env python.
-
- 12 Şub, 2001 20 kayıt (commit)
-
-
Tim Peters yazdı
_testcapimodule.c make sure PyList_Reverse doesn't blow up again getargs.c assert args isn't NULL at the top of vgetargs1 instead of waiting for a NULL-pointer dereference at the end
-
Guido van Rossum yazdı
This fixes SF bug #132008, reported by Warren J. Hack. The copyright for this patch (and this patch only) belongs to CNRI, as part of the (yet to be issued) 1.6.1 release. This is now checked into the HEAD branch. Tim will check in a test case to check for this specific bug, and an assertion in PyArgs_ParseTuple() to catch similar bugs in the future.
-
Skip Montanaro yazdı
* restores urllib as the file fetcher (closes bug #132000) * allows checking URLs with empty paths (closes patches #103511 and 103721) * properly handle user agents with versions (e.g., SpamMeister/1.5) * added several more tests
-
Fred Drake yazdı
Make the documentation tools work with Python 1.5.2. [Slightly modified from submitted patch. --FLD] This closes SF bug #132005.
-
Fred Drake yazdı
This closes SF bug #131304.
-
Fred Drake yazdı
GNOME-style internationalized options can be parsed using ConfigParser (SF bug #131635). Converted the tests to use test_support.verify() instead of output comparison to work.
-
Fred Drake yazdı
ConfigParser with GNOME-ish config files that use the internationalization conventions found in GNOME. This closes SF bug #131635.
-
Fred Drake yazdı
Fix the .binary() method of mpz objects for 64-bit systems. [Also removed a lot of trailing whitespace elsewhere in the file. --FLD] This closes SF patch #103547.
-
Jack Jansen yazdı
Got rid of full pathnames in "generated from" comments, so that these files are the same no mater which machine they've been generated on.
-
Fred Drake yazdı
-
Jeremy Hylton yazdı
iterating over it using PyDict_Next(). This bug fix brought to you by the letters b, c, d, g, h, ... and the reporter Ping.
-
Fred Drake yazdı
Make the documentation tools compatibile with Python 2.0.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
The interpreters built are now called PythonInterpreterClassic and PythonInterpreterCarbon. The fullbuild script takes care of copying either of these to PythonInterpreter.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
Added modules _testcapi, _weakref, _symtable.
-
Thomas Heller yazdı
mechanism to support self-modifying modules.
-
Tim Peters yazdı
run first. Indirectly due to Skip adding check_all("pty") to test___all__: that caused the expected ImportError due to pty.py trying to import the non-existent FCNTL to get handled by test___all__, leaving a partial module object for pty in sys.modules, which caused the later import of pty via test_pty to succeed. Then test_tpy died with an AttributeError, due to trying to access attributes of pty that didn't exist. regrtest viewed that as a failure rather than the appropriate "test skipped". Fixed by deleting partial module objects in test___all__ when test___all__ handles an ImportError.
-
Skip Montanaro yazdı
-
- 11 Şub, 2001 3 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
Make note about difflib and doctest Bump version number
-
Tim Peters yazdı
Bug was introduced by tricks played to make .pyc files executable via cmdline arg. Then again, -x worked via a trick to begin with. If anyone can think of a portable way to test -x, be my guest!
-
Jack Jansen yazdı
Bit the bullet and added a private GUSISIOUX for Python. This makes the delayconsole and keepopen code neater. Also tells Sioux to behave better with events, and handles cmd-. during print better. The pythonpreferences have also changed due to this.
-