- 23 Tem, 2002 12 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Tim Peters yazdı
package, and the loss of the test/data directory.
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
imports e.g. test_support must do so using an absolute package name such as "import test.test_support" or "from test import test_support". This also updates the README in Lib/test, and gets rid of the duplicate data dirctory in Lib/test/data (replaced by Lib/email/test/data). Now Tim and Jack can have at it. :)
-
Mark Hammond yazdı
command line for Windows builds. This should allow MSVC to import and build the Python MSVC6 project files without error.
-
Barry Warsaw yazdı
character set, which we'll convert to a Charset instance. Sigh.
-
Barry Warsaw yazdı
will return as the charset if implicit us-ascii is used.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Neal Norwitz yazdı
Return the selected item, if there is any.
-
- 22 Tem, 2002 10 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
Mention portable strptime() Move C-level sections farther down in the file
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Mark Hammond yazdı
-
Mark Hammond yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Mark Hammond yazdı
[ 583894 ] doc DL_IMPORT/DL_EXPORT changes
-
Jack Jansen yazdı
Fixed potential refcount problems with interned strings, adapted comments, added a bit more trace output if verbose > 1.
-
Jack Jansen yazdı
-
- 21 Tem, 2002 3 kayıt (commit)
-
-
Tim Peters yazdı
array. Our samplesort special-cases the snot out of this, running about 12x faster than *sort. The experimental mergesort runs it about 8x faster than *sort without special-casing, but should really do better than that (when merging runs of different lengths, right now it only does something clever about finding where the second run begins in the first and where the first run ends in the second, and that's more of a temp-memory optimization).
-
Tim Peters yazdı
from test.test_support import TestSkipped, run_unittest to from test_support import TestSkipped, run_unittest Otherwise, if the Japanese codecs aren't installed, regrtest doesn't believe the TestSkipped exception raised by this test matches the except (ImportError, test_support.TestSkipped), msg: it's looking for, and reports the skip as a crash failure instead of as a skipped test. I suppose this will make it harder to run this test outside of regrtest, but under the assumption only Barry does that, better to make it skip cleanly for everyone else.
-
Kurt B. Kaiser yazdı
opened on top of the shell instead of in a new window.
-
- 20 Tem, 2002 6 kayıt (commit)
-
-
Neal Norwitz yazdı
-
Martin v. Löwis yazdı
available in the configure tests already.
-
Tim Peters yazdı
It's a little better than average for our sort.
-
Neal Norwitz yazdı
-
Guido van Rossum yazdı
copying the result of fgetc() into an int variable before testing it for EOF.
-
Guido van Rossum yazdı
'en' in teardown(). This way hopefully test_time.py won't fail.
-
- 19 Tem, 2002 9 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
(i.e. email.test), so move the guts of them here from Lib/test. The latter directory will retain stubs to run the email.test tests using Python's standard regression test. test_email_torture.py is a torture tester which will not run under Python's test suite because I don't want to commit megs of data to that project (it will fail cleanly there). When run under the mimelib project it'll stress test the package with megs of message samples collected from various locations in the wild.
-
Barry Warsaw yazdı
(i.e. email.test), so move the guts of them here from Lib/test. The latter directory will retain stubs to run the email.test tests using Python's standard regression test. test_email_torture.py is a torture tester which will not run under Python's test suite because I don't want to commit megs of data to that project (it will fail cleanly there). When run under the mimelib project it'll stress test the package with megs of message samples collected from various locations in the wild. email/test/data is a copy of Lib/test/data. The fate of the latter is still undecided.
-
Barry Warsaw yazdı
mimelib-devel list is that non-strict parsing should be the default. Make it so.
-
Barry Warsaw yazdı
non-strict parsing should be the default. Make it so.
-
Barry Warsaw yazdı
backwards compatibility, we're silently deprecating get_type(), get_subtype() and get_main_type(). We may eventually noisily deprecate these. For now, we'll just fix a bug in the splitting of the main and subtypes. get_content_type(), get_content_maintype(), get_content_subtype(): New methods which replace the above. These /always/ return a content type string and do not take a failobj, because an email message always at least has a default content type. set_default_type(): Someday there may be additional default content types, so don't hard code an assertion about the value of the ctype argument.
-
Barry Warsaw yazdı
to print>> the structure to. Defaults to sys.stdout.
-
Barry Warsaw yazdı
out on the mimelib-devel list.
-
Fred Drake yazdı
also drop the output file.
-