summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Issue #2776: fixed small issue when handling an URL with double slashFacundo Batista2008-08-162-3/+35
* Merged revisions 65397 via svnmerge fromBenjamin Peterson2008-08-151-18/+17
* #2676: email/message.py [Message.get_content_type]: Trivial regex hangs on pa...Antoine Pitrou2008-08-151-7/+11
* Issue #3476: make BufferedReader and BufferedWriter thread-safeAntoine Pitrou2008-08-142-40/+141
* Disable the test until I have one that works.Thomas Heller2008-08-141-9/+9
* Try to fix the test on 64-bit platforms.Thomas Heller2008-08-141-5/+4
* issue #3554: ctypes.string_at and ctypes.wstring_at must use theThomas Heller2008-08-142-2/+13
* Issue 1432. Fixes a bug caused because of the evolutionFacundo Batista2008-08-142-5/+21
* Fixed test_distutils error (test_build_ext) on VC6.Hirokazu Yamamoto2008-08-141-1/+4
* Silence the DeprecationWarning of rfc822 triggered by its importation inBrett Cannon2008-08-141-1/+5
* remove duplicate close() from ssl.py; expose unwrap and add test for itBill Janssen2008-08-122-6/+25
* Fix the connection refused error part of issue 3419, use errno module instead...Jesse Noller2008-08-111-1/+2
* #3134: shutil referenced undefined WindowsError symbolAntoine Pitrou2008-08-111-4/+10
* Issue 2235: Py3k warnings are now emitted for classes that will no longer inh...Nick Coghlan2008-08-1117-18/+130
* Remove the fqdn call for issue 3270Jesse Noller2008-08-111-4/+1
* - Issue #3537: Fix an assertion failure when an empty but presized dictGeorg Brandl2008-08-111-0/+11
* Issue #1342811: Fix leak in Tkinter.Menu.delete. Commands associated toRobert Schuppenies2008-08-101-0/+10
* Silence warnings in csv about using reduce() when run under -3 by usingBrett Cannon2008-08-091-0/+1
* Use functools.reduce() in difflib instead of __builtin__.reduce() to silenceBrett Cannon2008-08-091-0/+1
* Copy reduce() to _functools so to have functools.reduce() not raise a warningBrett Cannon2008-08-092-3/+45
* Suppress the warning in asynchat from using buffer() when running udner -3.Brett Cannon2008-08-091-1/+5
* accept issue 3436Skip Montanaro2008-08-082-4/+51
* Remove buffer() usage in the socket module by just slicing directly on theBrett Cannon2008-08-081-6/+6
* Remove warnings generated for the suprocess module when run under -3. RequiredBrett Cannon2008-08-081-7/+8
* #1288615: Python code.interact() and non-ASCII inputAntoine Pitrou2008-08-071-0/+4
* Add imp.reload(). This to help with transitioning to 3.0 the reload() built-inBrett Cannon2008-08-061-0/+19
* Remove duplicate importMark Dickinson2008-08-061-1/+0
* Docstring typoMark Dickinson2008-08-061-1/+1
* Bug 3228: take a test from Niels Gustaebel's patch, and based on his patch, c...Andrew M. Kuchling2008-08-051-6/+29
* Remove use of callable() from pickle to silence warnings under -3.Brett Cannon2008-08-041-1/+1
* Remove tuple parameter unpacking in aifc to silence warnings under -3.Brett Cannon2008-08-041-1/+2
* Silence warnings under -3 triggered by wsgiref.Brett Cannon2008-08-044-11/+12
* Issue #1481296: (again!) Make conversion of a float NaN to an int orMark Dickinson2008-08-041-1/+2
* Remove a use of callable() from Tkinter to silence warnings under -3.Brett Cannon2008-08-041-1/+1
* Remove a dict.has_key() and list.sort(cmp=) usage from tarfile to silenceBrett Cannon2008-08-041-2/+3
* Remove usage of apply() in sqlite3 to silence warnings under -3.Brett Cannon2008-08-041-3/+3
* Remove dict.has_key() usage in the shelve module to silence warnings under -3.Brett Cannon2008-08-041-3/+3
* Remove dict.has_key() usage in xml.sax to silence warnings under -3.Brett Cannon2008-08-042-4/+4
* Remove the use of callable() in re to silence warnings under -3.Brett Cannon2008-08-041-1/+1
* Bug 3228: Explicitly supply the file mode to avoid creating executable files,Andrew M. Kuchling2008-08-042-3/+30
* Remove assignment to True/False and use of dict.has_key() to silence warningsBrett Cannon2008-08-041-4/+10
* Silence warnings under -3 about using dict.has_key() for modulefinder.Brett Cannon2008-08-041-3/+4
* Remove dict.has_key() usage in xml.dom.minidom to silence warnings whileBrett Cannon2008-08-041-4/+4
* - Issue #1857: subprocess.Popen.poll gained an additional _deadstate keywordGregory P. Smith2008-08-041-4/+8
* Remove dict.has_key() and apply() usage from the logging package to silenceBrett Cannon2008-08-042-17/+17
* Remove a use of callable() in fileinput to silence a -3 warning.Brett Cannon2008-08-031-1/+1
* Move filecmp from using dict.has_key() to dict.__contains__() to silenceBrett Cannon2008-08-031-3/+3
* Remove a dict.has_key() usage in email._parseaddr found while running -3.Brett Cannon2008-08-031-1/+1
* Remove Barry's love of deprecated syntax to silence warnings in the emailBrett Cannon2008-08-036-13/+13
* Remove a dict.has_key() use in DocXMLRPCServer that comes up under -3.Brett Cannon2008-08-031-1/+1