Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Simplify index entries; fix #1712. | Georg Brandl | 2008-01-05 | 3 | -97/+70 |
| | |||||
* | Remove with_statement future imports from 2.6 docs. | Georg Brandl | 2008-01-05 | 6 | -6/+6 |
| | |||||
* | Fix C++-style comment. | Georg Brandl | 2008-01-05 | 1 | -3/+3 |
| | |||||
* | Add myself. | Thomas Heller | 2008-01-05 | 1 | -0/+1 |
| | |||||
* | Fix comment typo | Andrew M. Kuchling | 2008-01-05 | 1 | -1/+1 |
| | |||||
* | Continue rolling back pep-3141 changes that changed behavior from 2.5. This | Jeffrey Yasskin | 2008-01-05 | 13 | -252/+75 |
| | | | | | | | | | | | | round included: * Revert round to its 2.6 behavior (half away from 0). * Because round, floor, and ceil always return float again, it's no longer necessary to have them delegate to __xxx___, so I've ripped that out of their implementations and the Real ABC. This also helps in implementing types that work in both 2.6 and 3.0: you return int from the __xxx__ methods, and let it get enabled by the version upgrade. * Make pow(-1, .5) raise a ValueError again. | ||||
* | clean up a comment | Fred Drake | 2008-01-05 | 1 | -2/+2 |
| | |||||
* | Add error-checking to namedtuple's _replace() method. | Raymond Hettinger | 2008-01-05 | 3 | -2/+15 |
| | |||||
* | Improve namedtuple's _cast() method with a docstring, new name, and ↵ | Raymond Hettinger | 2008-01-05 | 3 | -22/+32 |
| | | | | error-checking. | ||||
* | Patch #1698 by Senthil: allow '@' in username when parsed by urlparse.py. | Guido van Rossum | 2008-01-05 | 3 | -4/+24 |
| | |||||
* | Patch #1725 by Mark Dickinson, fixes incorrect conversion of -1e1000 | Guido van Rossum | 2008-01-05 | 3 | -22/+65 |
| | | | | and adds errors for -0x. | ||||
* | Fix markup | Andrew M. Kuchling | 2008-01-04 | 1 | -3/+3 |
| | |||||
* | Fix markup | Andrew M. Kuchling | 2008-01-04 | 1 | -5/+7 |
| | |||||
* | socket.ioctl is only available on Windows | Christian Heimes | 2008-01-04 | 2 | -1/+14 |
| | |||||
* | Reverted last transaction. It's the wrong branch. | Christian Heimes | 2008-01-04 | 6 | -167/+57 |
| | |||||
* | And here is the rest of Hirokazu Yamamoto's patch for VS6.0 support. Thanks ↵ | Christian Heimes | 2008-01-04 | 6 | -57/+167 |
| | | | | Hiro! | ||||
* | Added interface to Windows' WSAIoctl and a simple example for a network sniffer. | Christian Heimes | 2008-01-04 | 5 | -865/+953 |
| | |||||
* | Update links to bug/patch tracker | Andrew M. Kuchling | 2008-01-04 | 1 | -4/+4 |
| | |||||
* | Issue #1735: TarFile.extractall() now correctly sets | Lars Gustäbel | 2008-01-04 | 3 | -4/+24 |
| | | | | | | directory permissions and times. (will backport to 2.5) | ||||
* | Bug #1713: posixpath.ismount() claims symlink to a mountpoint is a mountpoint. | Christian Heimes | 2008-01-04 | 2 | -2/+4 |
| | |||||
* | Make math.{floor,ceil}({int,long}) return float again for backwards | Jeffrey Yasskin | 2008-01-04 | 3 | -4/+12 |
| | | | | compatibility after r59671 made them return integral types. | ||||
* | Minor fix-ups to named tuples: | Raymond Hettinger | 2008-01-04 | 3 | -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 Heimes | 2008-01-04 | 1 | -1/+2 |
| | |||||
* | Added _struct._clearcache() for regression tests | Christian Heimes | 2008-01-04 | 3 | -1/+15 |
| | |||||
* | Fixed refleak tests for _struct changes | Christian Heimes | 2008-01-04 | 1 | -1/+0 |
| | |||||
* | Add math items; other edits | Andrew M. Kuchling | 2008-01-04 | 1 | -3/+44 |
| | |||||
* | Typo fix | Andrew M. Kuchling | 2008-01-04 | 1 | -1/+1 |
| | |||||
* | Partial port of r59682 from py3k. | Amaury Forgeot d'Arc | 2008-01-04 | 2 | -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 comments | Christian Heimes | 2008-01-04 | 1 | -3/+4 |
| | |||||
* | Fixed math.copysign() on Windows | Christian Heimes | 2008-01-04 | 1 | -6/+8 |
| | |||||
* | Add items | Andrew M. Kuchling | 2008-01-04 | 1 | -3/+37 |
| | |||||
* | Markup fixes; grammar tweaks | Andrew M. Kuchling | 2008-01-04 | 1 | -8/+8 |
| | |||||
* | Bug #1481296: Fixed long(float('nan'))!=0L. | Christian Heimes | 2008-01-04 | 3 | -0/+9 |
| | |||||
* | Fixed #1687: plistlib.py restricts <integer> to Python int when writing | Christian Heimes | 2008-01-04 | 2 | -2/+4 |
| | |||||
* | Finish-up the struct module optimizations started at the Iceland NFS sprint. | Raymond Hettinger | 2008-01-04 | 2 | -100/+206 |
| | |||||
* | Bug #1301: fixed a bad assert in _tkinter. | Guido van Rossum | 2008-01-03 | 2 | -3/+7 |
| | |||||
* | Added copysign(x, y) function to the math module | Christian Heimes | 2008-01-03 | 4 | -1/+28 |
| | |||||
* | Modified PyImport_Import and PyImport_ImportModule to always use absolute ↵ | Christian Heimes | 2008-01-03 | 19 | -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 Heimes | 2008-01-03 | 1 | -2/+9 |
| | | | | definition of pi and euler | ||||
* | Added math.isinf() and math.isnan() | Christian Heimes | 2008-01-03 | 4 | -6/+69 |
| | |||||
* | Issue #1700, reported by Nguyen Quan Son, fix by Fredruk Lundh: | Guido van Rossum | 2008-01-03 | 3 | -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.vcproj | Christian Heimes | 2008-01-03 | 3 | -16/+2 |
| | |||||
* | Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just | Jeffrey Yasskin | 2008-01-03 | 21 | -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 Rossum | 2008-01-02 | 1 | -1/+2 |
| | |||||
* | Made vs9to8 Unix compatible | Christian Heimes | 2008-01-02 | 1 | -3/+4 |
| | |||||
* | Removed PCbuild8/ directory and added a new build directory for VS 2005 | Christian Heimes | 2008-01-02 | 64 | -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. Kaiser | 2008-01-02 | 1 | -3/+3 |
| | |||||
* | Issue1177 | Kurt B. Kaiser | 2008-01-02 | 2 | -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öwis | 2008-01-01 | 1 | -1/+1 |
| | |||||
* | Use Visual Studio 2009 on the build slaves. | Martin v. Löwis | 2008-01-01 | 6 | -26/+32 |
| |