summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* itertools.count() no longer limited to sys.maxint.Raymond Hettinger2007-10-041-1/+6
* Added a class to store the digits of log(10), so that they can be madeFacundo Batista2007-10-021-16/+49
* Made the various is_* operations return booleans. This was discussedFacundo Batista2007-10-023-125/+2240
* Change to LogRecord.__init__() to fix #1206. Note that archaic use of type(x)...Vinay Sajip2007-09-271-1/+3
* Minor date change.Vinay Sajip2007-09-271-2/+2
* Change to basicConfig() to fix #1021.Vinay Sajip2007-09-271-1/+1
* Change to flush and close logic to fix #1760556.Vinay Sajip2007-09-271-4/+7
* #1177: accept 2xx responses for https too, not only http.Georg Brandl2007-09-241-1/+3
* Patch # 188 by Philip Jenvey.Guido van Rossum2007-09-221-0/+7
* Patch #1181: add os.environ.clear() method.Georg Brandl2007-09-201-0/+8
* Patch #1541463: optimize performance of cgi.FieldStorage operations.Georg Brandl2007-09-201-10/+6
* Issue #1772851. Optimization of __hash__ to behave better for big bigFacundo Batista2007-09-192-4/+43
* Fix obvious typo in threaded test.Thomas Wouters2007-09-191-1/+1
* Issue #1772851. Alters long.__hash__ from being *almost* completelyFacundo Batista2007-09-191-0/+11
* issue1177: Ported Facundo's from urllib2 to urllib, accepting 2xx responses.Sean Reifscheider2007-09-191-1/+3
* Speed up of the various division operations (remainder, divide,Facundo Batista2007-09-181-161/+139
* Handle corner cased on 0-tuples and 1-tuples. Add verbose option so people c...Raymond Hettinger2007-09-182-8/+15
* issue1082: Fixing platform and system for Vista.Sean Reifscheider2007-09-171-0/+6
* The methods always return Decimal classes, even if they'reFacundo Batista2007-09-172-34/+53
* Sync-up named tuples with the latest version of the ASPN recipe.Raymond Hettinger2007-09-172-10/+26
* use binary mode when reading files for testAsyncore to make Windows happyBill Janssen2007-09-161-1/+1
* Add support for asyncore server-side SSL support. This requiresBill Janssen2007-09-163-130/+582
* ctypes.util.find_library uses dump(1) instead of objdump(1) on Solaris.Thomas Heller2007-09-141-9/+21
* Put the parameter watchexp back in (changed watchexp from an intFacundo Batista2007-09-131-2/+13
* Merged the decimal-branch (revisions 54886 to 58140). Decimal is nowFacundo Batista2007-09-13149-3037/+60541
* #1120: put explicit version in the shebang lines of pydoc, idleGeorg Brandl2007-09-121-1/+2
* Bug #1153: repr.repr() now doesn't require set and dictionary itemsGeorg Brandl2007-09-122-5/+25
* root certificate for https://svn.python.org/, used in test_sslBill Janssen2007-09-121-0/+26
* Generators had their throw() method allowing string exceptions. That's aBrett Cannon2007-09-111-1/+1
* Disable some tests that fail on the 'ppc Debian unstable' buildbot toThomas Heller2007-09-112-22/+22
* Always use the -E flag when spawning subprocesses in test_cmd_line (Issue 1056)Nick Coghlan2007-09-111-5/+2
* Make sure test_ssl doesn't reference the ssl module in aBill Janssen2007-09-111-1/+4
* A better way of finding an open port to test with.Bill Janssen2007-09-101-3/+26
* Patch # 1026 by Benjamin Aranguren (with Alex Martelli):Guido van Rossum2007-09-103-0/+425
* Patch # 1140 (my code, approved by Effbot).Guido van Rossum2007-09-101-0/+25
* More work on SSL support.Bill Janssen2007-09-1012-234/+668
* Fix a possible segfault from recursing too deep to get the repr of a list.Brett Cannon2007-09-101-0/+5
* tr a-z A-Z does not work on Solaris (would requireMartin v. Löwis2007-09-101-3/+6
* Change socket.error to inherit from IOError rather than being a standGregory P. Smith2007-09-092-11/+9
* email address updateGregory P. Smith2007-09-097-7/+7
* be explicit about the actual location of the missing fileSkip Montanaro2007-09-081-1/+2
* Backport from py3k branch:Thomas Heller2007-09-071-0/+6
* Add a 'c_longdouble' type to the ctypes module.Thomas Heller2007-09-076-2/+35
* Fix a crasher where Python code managed to infinitely recurse in C code withoutBrett Cannon2007-09-075-39/+17
* Make uuid1 and uuid4 tests conditional on whether ctypes can be imported;Brett Cannon2007-09-071-0/+12
* Apply the fix from Issue1112 to make this test more robust and keepGregory P. Smith2007-09-061-9/+22
* PyDict_GetItem() returns a borrowed reference.Armin Rigo2007-09-061-0/+28
* PyDict_GetItem() returns a borrowed reference.Armin Rigo2007-09-051-0/+14
* SSL certificate distinguished names should be represented by tuplesBill Janssen2007-09-051-8/+5
* Patch #1031213: Decode source line in SyntaxErrors back to its originalMartin v. Löwis2007-09-041-0/+26