summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
| | | | | | directory permissions and times. (will backport to 2.5)
* 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
| | | | compatibility after r59671 made them return integral types.
* Minor fix-ups to named tuples:Raymond Hettinger2008-01-043-22/+16
| | | | | | | | | * Make the _replace() method respect subclassing. * Using property() to make _fields read-only wasn't a good idea. It caused len(Point._fields) to fail. * Add note to _cast() about length checking and alternative with the star-operator.
* 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
| | | | | | | | | | | On Windows, when import fails to load a dll module, the message says "error code 193" instead of a more informative text. It turns out that FormatMessage needs additional parameters for some error codes. For example: 193 means "%1 is not a valid Win32 application". Since it is impossible to know which parameter to pass, we use FORMAT_MESSAGE_IGNORE_INSERTS to get the raw message, which is still better than the number.
* 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 ↵Christian Heimes2008-01-0319-63/+135
| | | | | | imports by calling __import__ with an explicit level of 0 Added a new API function PyImport_ImportModuleNoBlock. It solves the problem with dead locks when mixing threads and imports
* Some build bots don't compile mathmodule. There is an issue with the long ↵Christian Heimes2008-01-031-2/+9
| | | | definition of pi and euler
* 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
| | | | | Regular Expression inline flags not handled correctly for some unicode characters. (Forward port from 2.5.2.)
* 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
| | | | | | | the complex_pow part), r56649, r56652, r56715, r57296, r57302, r57359, r57361, r57372, r57738, r57739, r58017, r58039, r58040, and r59390, and new documentation. The only significant difference is that round(x) returns a float to preserve backward-compatibility. See http://bugs.python.org/issue1689.
* 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
| | | | | | | based on the VS 2008 build directory to PC/VS8.0. The script PCbuild/vs8to9.py was added to sync changes from PCbuild to PC/VS8.0. Kristjan, the initial creator of the PCbuild8 directory is fine with the replacement. I've moved the new version of the VS 2005 build directory next to the other legacy build directories. The new sync script is based on the work of wreck and syncs changes in the project, property and solution files.
* Change docstrings to comments so test output will display normally.Kurt B. Kaiser2008-01-021-3/+3
|
* Issue1177Kurt B. Kaiser2008-01-022-2/+15
| | | | | | | r58207 and r58247 patch logic is reversed. I noticed this when I tried to use urllib to retrieve a file which required auth. Fix that and add a test for 401 error to verify.
* 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
| | | | | This improves compatibility with Tcl 8.5, which would otherwise return textindex objects.
* Return results from Python callbacks to Tcl as Tcl objects.Martin v. Löwis2008-01-011-12/+5
| | | | Fixes Tk issue #1851526
* 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
| | | | | | to use of datetime.datetime.now() instead of utcnow() for comparison. (I think the test can still fail if it's executed pretty much *at* new year's eve, but that's not worth fixing.)
* 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
|