| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Oops. I didn't expect that some tests (test_cookie) have expected | Guido van Rossum | 2001-09-21 | 2 | -9/+3 |
|
|
* | Change the way unexpected output is reported: rather than stopping at | Guido van Rossum | 2001-09-21 | 2 | -94/+52 |
|
|
* | Change the name of the __getattr__ special method for new-style | Guido van Rossum | 2001-09-21 | 2 | -7/+7 |
|
|
* | Make these modules work when Python is compiled without Unicode support. | Guido van Rossum | 2001-09-21 | 1 | -0/+4 |
|
|
* | Add tests for repr() of strings containing string quotes as well. | Guido van Rossum | 2001-09-21 | 1 | -0/+4 |
|
|
* | Test basic functioning of unicode repr(). (If this breaks Jython, | Guido van Rossum | 2001-09-21 | 1 | -0/+11 |
|
|
* | Add a small test to verify that member and getset descriptors now have | Guido van Rossum | 2001-09-20 | 1 | -0/+8 |
|
|
* | Change testdescr.py to use the test_main() approach. | Guido van Rossum | 2001-09-20 | 1 | -4/+4 |
|
|
* | Change the PyUnit-based tests to use the test_main() approach. This | Fred Drake | 2001-09-20 | 34 | -39/+229 |
|
|
* | Fix Unicode .join() method to raise a TypeError for sequence | Marc-André Lemburg | 2001-09-20 | 1 | -1/+0 |
|
|
* | Update test output after the unicode() change. | Marc-André Lemburg | 2001-09-20 | 1 | -0/+1 |
|
|
* | Implement the changes proposed in patch #413333. unicode(obj) now | Marc-André Lemburg | 2001-09-20 | 1 | -0/+5 |
|
|
* | Patch #435971: UTF-7 codec by Brian Quinlan. | Marc-André Lemburg | 2001-09-20 | 1 | -1/+28 |
|
|
* | run_suite(): Oops, update a docstring. | Barry Warsaw | 2001-09-20 | 1 | -1/+1 |
|
|
* | run_suite(): Factor this out of run_unittest() for tests that build | Barry Warsaw | 2001-09-20 | 1 | -2/+7 |
|
|
* | Add additional coercion support for "self subtypes" to int, long, | Guido van Rossum | 2001-09-19 | 1 | -0/+28 |
|
|
* | Enable two checks for comparing a complex to a complex subtype | Guido van Rossum | 2001-09-19 | 1 | -3/+4 |
|
|
* | Enable some comparison tests that failed before. Still having problems | Tim Peters | 2001-09-18 | 1 | -3/+3 |
|
|
* | Add a similar test for rich comparisons. | Guido van Rossum | 2001-09-18 | 1 | -1/+67 |
|
|
* | fixed #449964: sre.sub raises an exception if the template contains a | Fredrik Lundh | 2001-09-18 | 1 | -0/+3 |
|
|
* | Hopefully fix 3-way comparisons. This unfortunately adds yet another | Guido van Rossum | 2001-09-18 | 1 | -0/+28 |
|
|
* | Get rid of a superfluous space after "--" in the message printed for a | Guido van Rossum | 2001-09-18 | 1 | -2/+1 |
|
|
* | Test for the safety check in wrap_cmpfunc(). | Guido van Rossum | 2001-09-18 | 1 | -0/+15 |
|
|
* | an SRE bugfix a day keeps Guido away... | Fredrik Lundh | 2001-09-18 | 1 | -0/+4 |
|
|
* | Undo some (but not all) of the more lenient acceptance of | Guido van Rossum | 2001-09-18 | 1 | -9/+9 |
|
|
* | - Some tests that check that assignments are not allowed expect this | Guido van Rossum | 2001-09-18 | 1 | -85/+95 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-09-18 | 2 | -4/+1 |
|
|
* | Make test_socketserver require the network resource. | Tim Peters | 2001-09-18 | 2 | -0/+3 |
|
|
* | I don't expect test_socketserver to get skipped on Windows anymore. | Tim Peters | 2001-09-18 | 1 | -1/+0 |
|
|
* | Rework akin to test_threaded_import, so that this can run under regrtest. | Tim Peters | 2001-09-17 | 1 | -7/+8 |
|
|
* | Rewrite function attributes to use the generic routines properly. | Guido van Rossum | 2001-09-17 | 1 | -1/+158 |
|
|
* | PyObject_Dir(): Merge in __members__ and __methods__ too (if they exist, | Tim Peters | 2001-09-17 | 1 | -0/+8 |
|
|
* | Since we had a bug with multiplication of dynamic long subclasses, add a | Tim Peters | 2001-09-15 | 1 | -1/+6 |
|
|
* | A fix for SF bug #461546 (bug in long_mul). | Guido van Rossum | 2001-09-15 | 1 | -0/+13 |
|
|
* | The 'p' (Pascal string) pack code acts unreasonably when the string size | Tim Peters | 2001-09-15 | 1 | -0/+25 |
|
|
* | limit prefix test for lambda | Jeremy Hylton | 2001-09-14 | 1 | -1/+1 |
|
|
* | Changed the dict implementation to take "string shortcuts" only when | Tim Peters | 2001-09-14 | 1 | -2/+36 |
|
|
* | Now that file objects are subclassable, you can get at the file constructor | Tim Peters | 2001-09-13 | 1 | -0/+42 |
|
|
* | Use the keyword form of file() instead of open() to create TESTFN. | Tim Peters | 2001-09-13 | 1 | -2/+2 |
|
|
* | Added simple tests of keyword arguments in the basic type constructors. | Tim Peters | 2001-09-13 | 1 | -0/+24 |
|
|
* | type_call(): Change in policy. The keyword args (if any) are now passed | Tim Peters | 2001-09-13 | 1 | -2/+13 |
|
|
* | SF bug [#460467] file objects should be subclassable. | Tim Peters | 2001-09-13 | 1 | -1/+48 |
|
|
* | Added subclass equality tests. Almost all of these are commented out now, | Tim Peters | 2001-09-12 | 1 | -0/+11 |
|
|
* | Again perhaps the end of [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-12 | 1 | -0/+24 |
|
|
* | If interning an instance of a string subclass, intern a real string object | Tim Peters | 2001-09-12 | 1 | -0/+14 |
|
|
* | str_subtype_new, unicode_subtype_new: | Tim Peters | 2001-09-12 | 1 | -0/+10 |
|
|
* | More on bug 460020: disable many optimizations of unicode subclasses. | Tim Peters | 2001-09-12 | 1 | -2/+55 |
|
|
* | More bug 460020: lots of string optimizations inhibited for string | Tim Peters | 2001-09-12 | 1 | -2/+25 |
|
|
* | More bug 460020. Disable a number of long optimizations for long subclasses. | Tim Peters | 2001-09-11 | 1 | -0/+24 |
|
|
* | More bug 460020: when F is a subclass of float, disable the unary plus | Tim Peters | 2001-09-11 | 1 | -0/+1 |
|
|