summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* 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
* Issue #1700, reported by Nguyen Quan Son, fix by Fredruk Lundh:Guido van Rossum2008-01-033-1/+34
* Issue #1726: Remove Python/atof.c from PCBuild/pythoncore.vcprojChristian Heimes2008-01-033-16/+2
* Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (justJeffrey Yasskin2008-01-0321-124/+1089
* Patch #1696. Don't attempt to close None in dry-run mode.Guido van Rossum2008-01-021-1/+2
* Made vs9to8 Unix compatibleChristian Heimes2008-01-021-3/+4
* Removed PCbuild8/ directory and added a new build directory for VS 2005Christian Heimes2008-01-0264-6610/+6473
* Change docstrings to comments so test output will display normally.Kurt B. Kaiser2008-01-021-3/+3
* Issue1177Kurt B. Kaiser2008-01-022-2/+15
* Test in PCbuild directory.Martin v. Löwis2008-01-011-1/+1
* Use Visual Studio 2009 on the build slaves.Martin v. Löwis2008-01-016-26/+32
* Don't link with Tix; Tix is loaded dynamically by Tcl.Martin v. Löwis2008-01-011-2/+2
* News item for r59653.Martin v. Löwis2008-01-011-0/+3
* Always convert Text.index result to string.Martin v. Löwis2008-01-011-1/+1
* Return results from Python callbacks to Tcl as Tcl objects.Martin v. Löwis2008-01-011-12/+5
* Added support for new Windows build dirs in PC/ to distutils.sysconfigChristian Heimes2008-01-011-0/+4
* The root of the project is two levels up from PC/VS7.1Christian Heimes2008-01-012-2/+2
* Added new wininst files to msi.py and adjusted some pathsChristian Heimes2008-01-011-5/+7
* MSI uses back slashes as path separatorsChristian Heimes2008-01-011-1/+1
* Fix an odd error which would only occur close to new year's eve, dueGuido van Rossum2008-01-011-2/+1
* Fix refleakNeal Norwitz2007-12-311-0/+1
* Fixed path to _ssl.c in Windows make file, take three ...Christian Heimes2007-12-311-1/+1
* Fixed path to _ssl.c in Windows make file, take twoChristian Heimes2007-12-311-3/+3
* Fixed path to _ssl.c in Windows make fileChristian Heimes2007-12-311-1/+1
* Fixed pathChristian Heimes2007-12-311-6/+6
* Fixed include paths of PC/VS7.1Christian Heimes2007-12-3120-318/+318
* Renamed PCBuild9 directory to PCBuildChristian Heimes2007-12-3146-6/+9
* Fix paths for build bot, part 2Christian Heimes2007-12-311-1/+1
* Fix paths for build botChristian Heimes2007-12-3110-16/+16
* Moved PCbuild directory to PC/VS7.1Christian Heimes2007-12-3137-0/+0
* Added wininst-9.0.exe executable for VS 2008Christian Heimes2007-12-317-17/+206
* Improve docs for itertools.groupby(). The use of xrange(0) to create a uniqu...Raymond Hettinger2007-12-291-1/+1
* Simpler documentation for itertools.tee(). Should be backported.Raymond Hettinger2007-12-291-7/+6
* Bug #1699: Define _BSD_SOURCE only on OpenBSD.Martin v. Löwis2007-12-293-15/+19
* Some cleanup in the docs.Georg Brandl2007-12-29126-1182/+805
* Configure Dialog: improved layout for keybinding. Patch 1457 Tal Einat.Kurt B. Kaiser2007-12-282-20/+24
* Remove a straggling debugging print line.Brett Cannon2007-12-251-1/+0
* Actually execute the tests for the getter/setter/deleter tests on properties.Brett Cannon2007-12-251-7/+12
* Make trailing whitespace explicit (including when it is an all-whitespaceBrett Cannon2007-12-241-10/+3
* Fix the docstrings of time.localtime() and gmtime() for the tm_mday field.Brett Cannon2007-12-241-2/+3
* Add itemAndrew M. Kuchling2007-12-221-3/+25
* Improve performance of built-in any()/all() by avoiding PyIter_Next() --Guido van Rossum2007-12-201-8/+28
* Fix refleak introduced in r59576.Georg Brandl2007-12-201-0/+1