summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Update a comment.Fred Drake2001-05-181-2/+2
* Simple conversion to PyUnit.Fred Drake2001-05-181-11/+19
* Simple conversion to PyUnit.Fred Drake2001-05-181-23/+20
* Added test suite for the new HTMLParser module, originally from theFred Drake2001-05-182-0/+255
* A much improved HTML parser -- a replacement for sgmllib. The API isGuido van Rossum2001-05-181-0/+432
* Fixed botched indent in _init_mac() code. (It may never be executed,Guido van Rossum2001-05-171-1/+1
* Made distutils understand the MacPython Carbon runtime model. Distutils will ...Jack Jansen2001-05-172-0/+6
* Moved the encoding map building logic from the individual mappingMarc-André Lemburg2001-05-1654-159/+74
* Just changed "x,y" to "x, y" everywhere (i.e., inserted horizontal spaceTim Peters2001-05-151-37/+34
* Add quoted-printable codecGuido van Rossum2001-05-152-0/+59
* abspath(): Fix inconsistent indentation.Fred Drake2001-05-151-1/+1
* This patch changes the way the string .encode() method works slightlyMarc-André Lemburg2001-05-158-0/+434
* Add warnings to the strop module, for to those functions that reallyGuido van Rossum2001-05-151-0/+2
* Convert a couple of comments to docstrings -- PyUnit can use these whenFred Drake2001-05-141-2/+2
* pprint's workhorse _safe_repr() function took time quadratic in the # ofTim Peters2001-05-142-39/+44
* Convert the pprint test to use PyUnit.Fred Drake2001-05-141-35/+57
* SF bug[ #423781: pprint.isrecursive() broken.Tim Peters2001-05-143-21/+66
* A disgusting "fix" for the test___all__ failure under Windows.Tim Peters2001-05-131-0/+11
* Add support for Windows using "mbcs" as the default Unicode encoding when dea...Mark Hammond2001-05-134-13/+91
* Get rid of the superstitious "~" in dict hashing's "i = (~hash) & mask".Tim Peters2001-05-139-36/+52
* Fix one bare except: clause.Fred Drake2001-05-111-1/+1
* Remove a bare try/except completely -- it just did not make sense!Fred Drake2001-05-111-12/+12
* When guarding an import, only catch ImportError.Fred Drake2001-05-111-1/+1
* Clean up a bare except where we only expect to catch pcre.error.Fred Drake2001-05-111-1/+1
* Clean up bare except where only IOError makes sense.Fred Drake2001-05-111-1/+1
* Clean up bare except: when determining whether a file is seekable.Fred Drake2001-05-111-2/+2
* Opening a file for reading can raise IOError, so only catch that.Fred Drake2001-05-111-1/+1
* int() of a string is only expected to through ValueError, so do not useFred Drake2001-05-111-2/+2
* <socket>.getsockopt() and <socket>.setsockopt() can only raise socket.error,Fred Drake2001-05-111-1/+1
* Catch only the relevant exceptions instead of using a bare except clause.Fred Drake2001-05-111-1/+1
* unlink() would normally be found in the "os" module, so use it from there.Fred Drake2001-05-111-5/+7
* Make test_mutants stronger by also adding random keys during comparisons.Tim Peters2001-05-101-2/+17
* Change test_mmap.py to use test_support.TESTFN instead of hardcoded "foo",Tim Peters2001-05-101-108/+119
* Repair typos in comments.Tim Peters2001-05-101-4/+4
* Change some text just a little to avoid font-lock hell.Fred Drake2001-05-101-1/+1
* Extend the weakref test suite to cover the complete mapping interface forFred Drake2001-05-101-4/+61
* Do no regenerate modules that should no longer be here.Fred Drake2001-05-103-11/+0
* Remove all remaining uses of the FCNTL module from the standard library.Fred Drake2001-05-103-30/+29
* SF bug #422121 Insecurities in dict comparison.Tim Peters2001-05-102-0/+139
* Update to reflect deprecation of the FCNTL module: The fcntl module doesFred Drake2001-05-101-4/+4
* patch 418489 from Andrew Dalke for string format bugSteve Purcell2001-05-101-1/+1
* Guido has Spoken. Restore strop.replace()'s treatment of a 0 count asTim Peters2001-05-101-1/+3
* The strop module and test_strop.py believe replace() with a 0 countTim Peters2001-05-101-1/+1
* SF bug #422088: [OSF1 alpha] string.replace().Tim Peters2001-05-091-0/+6
* Remove the old platform-specific FCNTL.py modules; these are no longerFred Drake2001-05-0915-1993/+0
* Add a new FCNTL.py backward compatibility module that issues a deprecationFred Drake2001-05-091-0/+14
* Update the tests for the fcntl module to check passing in file objects,Fred Drake2001-05-091-11/+21
* Trivial tests of urllib2 for recent SF bugJeremy Hylton2001-05-092-0/+18
* Raise useful exception when called with URL for which request typeJeremy Hylton2001-05-091-1/+2
* SF bug #422177: Results from .pyc differs from .pyTim Peters2001-05-081-0/+3