| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Add lineno attributes to Discard nodes | Jeremy Hylton | 2001-04-11 | 1 | -1/+3 |
|
|
* | Make sure the docstring is always entered as the first element in the | Jeremy Hylton | 2001-04-11 | 1 | -11/+1 |
|
|
* | Test cases for examples of ext call error handling. | Jeremy Hylton | 2001-04-11 | 2 | -0/+40 |
|
|
* | Idiotic braino caused HTTP openers to ignore proxies. | Moshe Zadka | 2001-04-11 | 1 | -1/+1 |
|
|
* | Add a close_request method to the BaseServer so that the TCPServer class | Ka-Ping Yee | 2001-04-11 | 1 | -0/+14 |
|
|
* | Updated version of RISCOS support. SF patch 411213 by Dietmar Schwertberger | Guido van Rossum | 2001-04-10 | 1 | -3/+12 |
|
|
* | The lower() and tkraise() methods were calling the Canvas widget | Guido van Rossum | 2001-04-10 | 1 | -2/+2 |
|
|
* | mapping(): Remove this function since it does not add anything to the API. | Fred Drake | 2001-04-10 | 1 | -8/+1 |
|
|
* | Use the WeakKeyDictionary and WeakValueDictionary classes directly | Fred Drake | 2001-04-10 | 1 | -2/+2 |
|
|
* | Since bdist_wininst.py contains the installer executable, it had to be | Thomas Heller | 2001-04-10 | 1 | -262/+262 |
|
|
* | Fix two unqualified except: clauses. | Guido van Rossum | 2001-04-10 | 1 | -4/+4 |
|
|
* | Fix an unqualified except:. | Guido van Rossum | 2001-04-10 | 1 | -1/+1 |
|
|
* | Try an except: after an import into "except ImportError". | Guido van Rossum | 2001-04-10 | 1 | -1/+1 |
|
|
* | Some other tests, when failing, don't always remove their TESTFN file. | Guido van Rossum | 2001-04-10 | 1 | -0/+6 |
|
|
* | When doing the quick test to see whether large files are supported, | Guido van Rossum | 2001-04-10 | 1 | -1/+1 |
|
|
* | When zlib can't be imported, zipfile raises RuntimeError, which causes | Guido van Rossum | 2001-04-10 | 1 | -0/+1 |
|
|
* | Fix typo in instantiation of ErrorDuringImport. | Ka-Ping Yee | 2001-04-10 | 1 | -1/+1 |
|
|
* | Fix synopsis() so it can handle binary module files. | Ka-Ping Yee | 2001-04-10 | 1 | -85/+85 |
|
|
* | Add getmodulename() and getmoduleinfo() routines to inspect filenames. | Ka-Ping Yee | 2001-04-10 | 1 | -0/+15 |
|
|
* | test_pickle works on sizeof(long)==8 boxes again. | Tim Peters | 2001-04-10 | 1 | -11/+18 |
|
|
* | Test full range of native ints. This exposes two more binary pickle | Tim Peters | 2001-04-10 | 1 | -0/+19 |
|
|
* | Mechanical fiddling for easier reading: every "if" test was enclosed in | Tim Peters | 2001-04-10 | 1 | -35/+35 |
|
|
* | Add globals to list of names returned by get_names(). | Jeremy Hylton | 2001-04-09 | 1 | -7/+13 |
|
|
* | Pickles have a number of storage formats for various sizes and kinds of | Tim Peters | 2001-04-09 | 1 | -13/+40 |
|
|
* | No functional change -- just added whitespace in places so I could follow | Tim Peters | 2001-04-09 | 1 | -11/+30 |
|
|
* | * Remove exc_info() kludge -- it actually messed up the Jython output | Steve Purcell | 2001-04-09 | 1 | -17/+13 |
|
|
* | fixing 408085 - redirect from https becomes http | Moshe Zadka | 2001-04-09 | 1 | -1/+1 |
|
|
* | Add two arguments to Scope constructor, module scope and class name | Jeremy Hylton | 2001-04-09 | 1 | -24/+92 |
|
|
* | Add preliminary module symbol table constructor | Jeremy Hylton | 2001-04-09 | 1 | -0/+193 |
|
|
* | remove global decl about unused variable | Jeremy Hylton | 2001-04-09 | 1 | -1/+0 |
|
|
* | Add support for future statements | Jeremy Hylton | 2001-04-09 | 2 | -6/+98 |
|
|
* | Fix "import as" (has always skipping the as name) | Jeremy Hylton | 2001-04-09 | 1 | -9/+15 |
|
|
* | typo | Jeremy Hylton | 2001-04-09 | 1 | -1/+1 |
|
|
* | Make it clear that a bdb subclass must implement do_clear(). | Guido van Rossum | 2001-04-08 | 1 | -0/+3 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-04-08 | 1 | -2/+2 |
|
|
* | Fix from the Madusa mailing list: | Tim Peters | 2001-04-08 | 1 | -1/+1 |
|
|
* | Remove useless imports, as reported by PyChecker. | Tim Peters | 2001-04-08 | 1 | -3/+0 |
|
|
* | Get rid of useless string import, as reported by Neal Norwitz's PyChecker.py | Tim Peters | 2001-04-08 | 1 | -1/+0 |
|
|
* | Add an uninstall method to the ImportManager. | Greg Stein | 2001-04-07 | 1 | -1/+9 |
|
|
* | Since Guido fiddled Cookie.py to work with doctest, it's a Good Thing to | Tim Peters | 2001-04-06 | 2 | -0/+5 |
|
|
* | Since this module already uses doctest-style examples, I figured I'd | Guido van Rossum | 2001-04-06 | 1 | -4/+10 |
|
|
* | Remove lines for asynchat & asyncore, as they've now got their own test. | Tim Peters | 2001-04-06 | 1 | -2/+0 |
|
|
* | After testing the test on Unix, several improvements: | Guido van Rossum | 2001-04-06 | 1 | -3/+4 |
|
|
* | Add test for asynchat. This also tests asyncore. | Guido van Rossum | 2001-04-06 | 2 | -0/+58 |
|
|
* | Make the docstring a raw string, for pydoc. | Guido van Rossum | 2001-04-06 | 1 | -1/+1 |
|
|
* | Fix the fix (my error -- hasty pasty). | Tim Peters | 2001-04-05 | 1 | -1/+1 |
|
|
* | One-liner critical fix from Jim Fulton: Eric's string-method crusade | Tim Peters | 2001-04-05 | 1 | -1/+1 |
|
|
* | Bug #412086, reported by Peter Wilson: The _curses module doesn't | Andrew M. Kuchling | 2001-04-05 | 1 | -0/+13 |
|
|
* | Patch #413912 from Steve Majewski: Add .m to the list of extensions | Andrew M. Kuchling | 2001-04-05 | 1 | -1/+1 |
|
|
* | Corrected default value of the DocumentType.internalSubset attribute based | Fred Drake | 2001-04-05 | 1 | -1/+1 |
|
|