summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* Small code simplification. Forgot that classmethods can be called from intan...Raymond Hettinger2008-01-062-2/+2
* Add John Nagle (of issue #1637).Guido van Rossum2008-01-051-0/+1
* Patch #1637: fix urlparse for URLs like 'http://x.com?arg=/foo'.Guido van Rossum2008-01-053-7/+13
* Final adjustments for #1601Christian Heimes2008-01-051-1/+3
* Use markup.Georg Brandl2008-01-051-4/+4
* Repair markup.Georg Brandl2008-01-051-10/+6
* #1719: capitalization error in "UuidCreate".Georg Brandl2008-01-051-1/+1
* Set native svn:eol-style property for text files.Georg Brandl2008-01-050-0/+0
* Revert socket.rst to unix-eol.Georg Brandl2008-01-051-906/+906
* Doc patch #1730 from Robin Stocker; minor corrections mostly to os.rst.Georg Brandl2008-01-0510-95/+101
* Simplify index entries; fix #1712.Georg Brandl2008-01-053-97/+70
* Remove with_statement future imports from 2.6 docs.Georg Brandl2008-01-056-6/+6
* Fix C++-style comment.Georg Brandl2008-01-051-3/+3
* Add myself.Thomas Heller2008-01-051-0/+1
* Fix comment typoAndrew M. Kuchling2008-01-051-1/+1
* Continue rolling back pep-3141 changes that changed behavior from 2.5. ThisJeffrey Yasskin2008-01-0513-252/+75
* clean up a commentFred Drake2008-01-051-2/+2
* Add error-checking to namedtuple's _replace() method.Raymond Hettinger2008-01-053-2/+15
* Improve namedtuple's _cast() method with a docstring, new name, and error-che...Raymond Hettinger2008-01-053-22/+32
* Patch #1698 by Senthil: allow '@' in username when parsed by urlparse.py.Guido van Rossum2008-01-053-4/+24
* Patch #1725 by Mark Dickinson, fixes incorrect conversion of -1e1000Guido van Rossum2008-01-053-22/+65
* Fix markupAndrew M. Kuchling2008-01-041-3/+3
* Fix markupAndrew M. Kuchling2008-01-041-5/+7
* socket.ioctl is only available on WindowsChristian Heimes2008-01-042-1/+14
* Reverted last transaction. It's the wrong branch.Christian Heimes2008-01-046-167/+57
* And here is the rest of Hirokazu Yamamoto's patch for VS6.0 support. Thanks H...Christian Heimes2008-01-046-57/+167
* Added interface to Windows' WSAIoctl and a simple example for a network sniffer.Christian Heimes2008-01-045-865/+953
* Update links to bug/patch trackerAndrew M. Kuchling2008-01-041-4/+4
* Issue #1735: TarFile.extractall() now correctly setsLars Gustäbel2008-01-043-4/+24
* Bug #1713: posixpath.ismount() claims symlink to a mountpoint is a mountpoint.Christian Heimes2008-01-042-2/+4
* Make math.{floor,ceil}({int,long}) return float again for backwardsJeffrey Yasskin2008-01-043-4/+12
* Minor fix-ups to named tuples:Raymond Hettinger2008-01-043-22/+16
* Moved include "Python.h" in front of other imports to silence a warning.Christian Heimes2008-01-041-1/+2
* Added _struct._clearcache() for regression testsChristian Heimes2008-01-043-1/+15
* Fixed refleak tests for _struct changesChristian Heimes2008-01-041-1/+0
* Add math items; other editsAndrew M. Kuchling2008-01-041-3/+44
* Typo fixAndrew M. Kuchling2008-01-041-1/+1
* Partial port of r59682 from py3k.Amaury Forgeot d'Arc2008-01-042-1/+6
* Filled in some XXX commentsChristian Heimes2008-01-041-3/+4
* Fixed math.copysign() on WindowsChristian Heimes2008-01-041-6/+8
* Add itemsAndrew M. Kuchling2008-01-041-3/+37
* Markup fixes; grammar tweaksAndrew M. Kuchling2008-01-041-8/+8
* Bug #1481296: Fixed long(float('nan'))!=0L.Christian Heimes2008-01-043-0/+9
* Fixed #1687: plistlib.py restricts <integer> to Python int when writingChristian Heimes2008-01-042-2/+4
* Finish-up the struct module optimizations started at the Iceland NFS sprint.Raymond Hettinger2008-01-042-100/+206
* Bug #1301: fixed a bad assert in _tkinter.Guido van Rossum2008-01-032-3/+7
* Added copysign(x, y) function to the math moduleChristian Heimes2008-01-034-1/+28
* Modified PyImport_Import and PyImport_ImportModule to always use absolute imp...Christian Heimes2008-01-0319-63/+135
* Some build bots don't compile mathmodule. There is an issue with the long def...Christian Heimes2008-01-031-2/+9
* Added math.isinf() and math.isnan()Christian Heimes2008-01-034-6/+69