- 22 May, 2001 22 kayıt (commit)
-
-
Fred Drake yazdı
-
Fred Drake yazdı
isabs() (no false results were checked) and splitdrive().
-
Fred Drake yazdı
Update to reflect using "" as the default value for the second parameter to the get() method.
-
Fred Drake yazdı
setdefault() the empty string. In setdefault(), use + to join the value to create the entry for the headers attribute so that TypeError is raised if the value is of the wrong type.
-
Tim Peters yazdı
When regrtest.py finds an attribute "test_main" in a test it imports, regrtest runs the test's test_main after the import. test_threaded_import needs this else the cross-thread import lock prevents it from making progress. Other tests can use this hack too, but I doubt it will ever be popular.
-
Fred Drake yazdı
-
Guido van Rossum yazdı
This should be faster. This means: (1) "for line in file:" won't work if the xreadlines module can't be imported. (2) The body of "for line in file:" shouldn't use the file directly; the effects (e.g. of file.readline(), file.seek() or even file.tell()) would be undefined because of the buffering that goes on in the xreadlines module.
-
Fred Drake yazdı
-
Guido van Rossum yazdı
ought to be faster.
-
Tim Peters yazdı
instead. Allows this test to finish on Windows again.
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
localization of month and day names.
-
Fred Drake yazdı
when #ifdef was needed. This closes (reallu!) SF bug #417418.
-
Fred Drake yazdı
add a list of the mapping methods which are not supported (per Barry's comments).
-
Fred Drake yazdı
objects.
-
Fred Drake yazdı
-
Fred Drake yazdı
rfc822.Message objects, based on comments from Barry.
-
Jack Jansen yazdı
for loading modules from the application resource fork stopped working when sys.path component normalization was implemented. Comparison of sys.path components is now done by FSSpec in stead of by pathname.
-
Tim Peters yazdı
ICK ALERT: read the long comment block before run_the_test(). It was almost impossible to get this to run without instant deadlock, and the solution here sucks on several counts. If you can dream up a better way, let me know!
-
Marc-André Lemburg yazdı
-
Tim Peters yazdı
numbers that display nicely after repr(). From much doctest experience with the same trick, I believe people find examples with simple fractions easier to understand too: they can usually check the results in their head, and so feel confident about what they're seeing. Not even I get a warm feeling from a result that looks like 70330.345024097141 ...
-
Guido van Rossum yazdı
prototype, for gcc -Wstrict-prototypes.
-
- 21 May, 2001 18 kayıt (commit)
-
-
Fred Drake yazdı
pointers to information about the other mailbox formats; if anyone can provide the information needed, please let me know!
-
Fred Drake yazdı
test; there is no need to store this in a file if the actual test code does not produce any output.
-
Fred Drake yazdı
contains a single line of text giving the name of the output file. This covers all tests that do not actually produce any output in the test code.
-
Andrew M. Kuchling yazdı
delete ones that can't be imported due to missing symbols or other causes.
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Marc-André Lemburg yazdı
UTF-16 codec will now interpret and remove a *leading* BOM mark. Sub- sequent BOM characters are no longer interpreted and removed. UTF-16-LE and -BE pass through all BOM mark characters. These changes should get the UTF-16 codec more in line with what the Unicode FAQ recommends w/r to BOM marks.
-
Andrew M. Kuchling yazdı
-
Fred Drake yazdı
for the Maildir mailbox format. This still does not address other mailbox formats.
-
Guido van Rossum yazdı
basically accept <!...> where the dots can be single- or double-quoted strings or any other character except >. Background: I found a real-life example that failed to parse with the old assumption: http://www.opensource.org/licenses/jabberpl.html contains a few constructs of the form <![if !supportLists]>...<![endif]>.
-
Barry Warsaw yazdı
indicate it took an argument. This closes SF patch #402223 by Bastian Kleineidam.
-
Barry Warsaw yazdı
indicating whether the entry was extracted from a docstring or not. write(): If any of the locations of a string appearance came from a docstring, add a comment such as #. docstring before the references (after a suggestion by Martin von Loewis).
-
Barry Warsaw yazdı
first by filename and then by line number. Closes SF patch #425821. Also, fixes a problem with duplicate entries.
-
Fred Drake yazdı
floating point numbers in an interactive example. Added comment to help explain control flow in the example code showing how to check if a number is prime. This closes SF bugs 419434 and 424552.
-
Fred Drake yazdı
-
Fred Drake yazdı
This closes SF bug #425320.
-
Tim Peters yazdı
Mark Hammond claimed that the iterized filter() forgot to decref the iterator upon return. He was right!
-
Fred Drake yazdı
-