| Commit message (Expand) | Author | Age | Files | Lines |
* | Since the most likely failure mode for an expected-output test is a change | Tim Peters | 2001-09-22 | 1 | -15/+22 |
|
|
* | {String,cString}IO.StringIO's support iteration. | Barry Warsaw | 2001-09-22 | 1 | -0/+4 |
|
|
* | I_getiter(): Function for the tp_iter slot of Itype so that | Barry Warsaw | 2001-09-22 | 1 | -20/+45 |
|
|
* | __iter__(): New method so that StringIO's can participate in the | Barry Warsaw | 2001-09-22 | 1 | -0/+3 |
|
|
* | Note that files are iterable; describe what the iterator returns. | Fred Drake | 2001-09-22 | 1 | -0/+5 |
|
|
* | Converted test_StringIO.py to use unittest, so | Barry Warsaw | 2001-09-22 | 2 | -62/+71 |
|
|
* | Start of a test to make sure the profiler/tracer support in the core | Fred Drake | 2001-09-22 | 1 | -0/+110 |
|
|
* | Add the __getattr__ hook back. The rules are now: | Guido van Rossum | 2001-09-21 | 2 | -5/+43 |
|
|
* | Bump version number. | Fred Drake | 2001-09-21 | 2 | -2/+2 |
|
|
* | Added reference to Tutorial section on user-defined exceptions for | Fred Drake | 2001-09-21 | 1 | -9/+15 |
|
|
* | Exceptions in interactive examlpes did not always include the indication of | Fred Drake | 2001-09-21 | 1 | -19/+85 |
|
|
* | reportdiff(): print a "plain diff" style diff. | Guido van Rossum | 2001-09-21 | 1 | -4/+30 |
|
|
* | 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 | 3 | -11/+11 |
|
|
* | Make these modules work when Python is compiled without Unicode support. | Guido van Rossum | 2001-09-21 | 3 | -5/+18 |
|
|
* | Add tests for repr() of strings containing string quotes as well. | Guido van Rossum | 2001-09-21 | 1 | -0/+4 |
|
|
* | Fix a bug in rendering of \\ by repr() -- it rendered as \\\ instead | Guido van Rossum | 2001-09-21 | 1 | -0/+1 |
|
|
* | 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 |
|
|
* | Add optional docstrings to getset descriptors. Fortunately, there's | Guido van Rossum | 2001-09-20 | 10 | -26/+43 |
|
|
* | 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 |
|
|
* | Add optional docstrings to member descriptors. For backwards | Guido van Rossum | 2001-09-20 | 17 | -251/+313 |
|
|
* | Fill in a few more descriptions for xml.parsers.expat. | Fred Drake | 2001-09-20 | 1 | -5/+24 |
|
|
* | Document new file() constructor, with the body of open()'s text, plus a | Tim Peters | 2001-09-20 | 1 | -37/+45 |
|
|
* | Document all the Py*_CheckExact() functions. | Fred Drake | 2001-09-20 | 2 | -26/+174 |
|
|
* | PyLocale_setlocale(): silence compiler warning about free() of a const | Guido van Rossum | 2001-09-20 | 1 | -1/+1 |
|
|
* | Fix Unicode .join() method to raise a TypeError for sequence | Marc-André Lemburg | 2001-09-20 | 2 | -2/+11 |
|
|
* | Update test output after the unicode() change. | Marc-André Lemburg | 2001-09-20 | 1 | -0/+1 |
|
|
* | Update description of Tools/compiler | Jeremy Hylton | 2001-09-20 | 1 | -3/+2 |
|
|
* | Remove setup.py, unnecessary since compiler package is the std | Jeremy Hylton | 2001-09-20 | 2 | -14/+2 |
|
|
* | Moved to Tools/compiler along with astgen.py | Jeremy Hylton | 2001-09-20 | 1 | -87/+0 |
|
|
* | _PyObject_GetDictPtr(): when the offset is negative, always align -- | Guido van Rossum | 2001-09-20 | 1 | -11/+6 |
|
|
* | Note about enhancements to unicode(). | Marc-André Lemburg | 2001-09-20 | 1 | -0/+6 |
|
|
* | Python part of the UTF-7 codec by Brian Quinlan. | Marc-André Lemburg | 2001-09-20 | 1 | -0/+27 |
|
|
* | Implement the changes proposed in patch #413333. unicode(obj) now | Marc-André Lemburg | 2001-09-20 | 2 | -42/+60 |
|
|
* | Patch #435971: UTF-7 codec by Brian Quinlan. | Marc-André Lemburg | 2001-09-20 | 5 | -1/+392 |
|
|
* | Patch #462635 by Andrew Kuchling correcting bugs in the new | Marc-André Lemburg | 2001-09-20 | 5 | -11/+21 |
|
|
* | SF bug [#463093] File methods need doc strings. | Tim Peters | 2001-09-20 | 1 | -14/+94 |
|
|
* | 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 |
|
|
* | Since inspect.isfunction(obj) is a precondition for calling | Tim Peters | 2001-09-20 | 1 | -6/+6 |
|
|
* | Ensure that isfunction(obj) and (the new) ismethoddescriptor(obj) never | Tim Peters | 2001-09-20 | 1 | -5/+8 |
|
|
* | News about compiler and pydoc. | Guido van Rossum | 2001-09-20 | 1 | -3/+9 |
|
|
* | AFAICT pydoc/inspect do the right thing again. | Guido van Rossum | 2001-09-20 | 1 | -2/+3 |
|
|
* | After much thrashing, I believe this is a truly minimal patch to teach | Tim Peters | 2001-09-20 | 2 | -4/+27 |
|
|
* | Install the compiler package under Lib. | Tim Peters | 2001-09-20 | 1 | -26/+8 |
|
|
* | The compiler package is now part of the standard library. | Jeremy Hylton | 2001-09-20 | 12 | -5811/+0 |
|
|
* | Patch #461321: Support None as a timeout in poll2 and poll3. | Martin v. Löwis | 2001-09-19 | 1 | -4/+6 |
|
|