Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #6215: backport the 3.1 io lib | Antoine Pitrou | 2009-06-12 | 8 | -247/+7793 |
| | |||||
* | Fix signed/unsigned compiler warning. | Raymond Hettinger | 2009-06-10 | 1 | -1/+1 |
| | |||||
* | backport r73268 | Benjamin Peterson | 2009-06-07 | 1 | -33/+1 |
| | |||||
* | Issue #4873: Fix resource leaks in error cases of pwd and grp. | Martin v. Löwis | 2009-05-29 | 2 | -1/+2 |
| | |||||
* | Fix nearly all compilation warnings under Apple gcc-4.0. Tested with OPT="-g | Jeffrey Yasskin | 2009-05-29 | 2 | -1/+3 |
| | | | | | | -Wall -Wstrict-prototypes -Werror" in both --with-pydebug mode and --without. There's still a batch of non-prototype warnings in Xlib.h that I don't know how to fix. | ||||
* | Issue 5794: fix cPickle's unpickling of recursive tuples. | Collin Winter | 2009-05-26 | 1 | -10/+9 |
| | |||||
* | Allow multiple context managers in one with statement, as proposed | Georg Brandl | 2009-05-25 | 1 | -15/+18 |
| | | | | | | | in http://codereview.appspot.com/53094 and accepted by Guido. The construct is transformed into multiple With AST nodes so that there should be no problems with the semantics. | ||||
* | fix error handling | Benjamin Peterson | 2009-05-25 | 1 | -3/+4 |
| | |||||
* | Issue 5670: special-case pickling of dicts. This nearly doubles the ↵ | Collin Winter | 2009-05-25 | 1 | -9/+78 |
| | | | | performance of dict pickling in cPickle. | ||||
* | stop using Py_FindMethod | Benjamin Peterson | 2009-05-24 | 1 | -8/+22 |
| | |||||
* | Issue #1309352: fcntl now converts its third arguments to a C `long` rather | Antoine Pitrou | 2009-05-24 | 1 | -2/+2 |
| | | | | | than an int, which makes some operations possible under 64-bit Linux (e.g. DN_MULTISHOT with F_NOTIFY). | ||||
* | Fix build under Windows | Antoine Pitrou | 2009-05-24 | 1 | -3/+1 |
| | |||||
* | support building with subversion 1.7 #6094 | Benjamin Peterson | 2009-05-23 | 1 | -1/+1 |
| | |||||
* | Some pid_t-expecting or producing functions were forgotten in r72852. | Antoine Pitrou | 2009-05-23 | 1 | -11/+17 |
| | |||||
* | Issue #1983: Fix functions taking or returning a process identifier to use | Antoine Pitrou | 2009-05-23 | 1 | -16/+35 |
| | | | | | the dedicated C type `pid_t` instead of a C `int`. Some platforms have a process identifier type wider than the standard C integer type. | ||||
* | typos in ctypes Module | Mark Dickinson | 2009-05-20 | 1 | -2/+2 |
| | |||||
* | Issue #3527: Removed Py_WIN_WIDE_FILENAMES which is not used any more. | Hirokazu Yamamoto | 2009-05-17 | 2 | -34/+26 |
| | |||||
* | Issue #5918: Fix a crash in the parser module. | Antoine Pitrou | 2009-05-14 | 1 | -2/+2 |
| | | | | Patch by Amaury. | ||||
* | PyCode_NewEmpty: | Jeffrey Yasskin | 2009-05-08 | 3 | -75/+19 |
| | | | | | | | | Most uses of PyCode_New found by http://www.google.com/codesearch?q=PyCode_New are trying to build an empty code object, usually to put it in a dummy frame object. This patch adds a PyCode_NewEmpty wrapper which lets the user specify just the filename, function name, and first line number, instead of also requiring lots of code internals. | ||||
* | Issue #5933: Fix gcc -Wextra compiler warnings (and remove some | Mark Dickinson | 2009-05-08 | 1 | -6/+6 |
| | | | | trailing whitespace). | ||||
* | Add a file that contains diffs between offical libffi files and the | Thomas Heller | 2009-05-08 | 1 | -0/+207 |
| | | | | | files in this repository. Should make it easier to merge new libffi versions. | ||||
* | Issue 3739: The unicode-internal encoder now reports the number of *characters* | Walter Dörwald | 2009-05-06 | 1 | -1/+1 |
| | | | | consumed like any other encoder (instead of the number of bytes). | ||||
* | tabify :( | Benjamin Peterson | 2009-05-05 | 1 | -5/+5 |
| | |||||
* | fix running test_capi with -R :: | Benjamin Peterson | 2009-05-05 | 1 | -0/+9 |
| | | | | Also, fix a refleak in the test that was preventing running. :) | ||||
* | Issue #5933: Fix some gcc -Wextra warnings. Thanks Victor Stinner for | Mark Dickinson | 2009-05-05 | 2 | -3/+3 |
| | | | | the patch. | ||||
* | #5932: fix error return in _convertPyInt_AsSsize_t() conversion function. | Georg Brandl | 2009-05-05 | 1 | -3/+3 |
| | |||||
* | Issue #5913: os.listdir() should fail for empty path on windows. | Hirokazu Yamamoto | 2009-05-04 | 1 | -6/+7 |
| | |||||
* | cleanup applied patch to match style that is already in py3k branch. | Gregory P. Smith | 2009-05-04 | 1 | -15/+8 |
| | |||||
* | Issue #4751: For hashlib algorithms provided by OpenSSL, the Python | Gregory P. Smith | 2009-05-04 | 1 | -49/+106 |
| | | | | GIL is now released during computation on data lengths >= 2048 bytes. | ||||
* | Isue #5084: unpickling now interns the attribute names of pickled objects, | Antoine Pitrou | 2009-05-02 | 1 | -1/+9 |
| | | | | | saving memory and avoiding growth in size of subsequent pickles. Proposal and original patch by Jake McGuire. | ||||
* | Issue #5726: Make Modules/ld_so_aix return the actual exit code of the ↵ | Antoine Pitrou | 2009-05-01 | 1 | -0/+3 |
| | | | | | | linker, rather than always exit successfully. Patch by Floris Bruynooghe. | ||||
* | Issue #4305: ctypes fails to build on mipsel-linux-gnu (detects mips | Thomas Heller | 2009-04-28 | 2 | -6/+6 |
| | | | | instead of mipsel) | ||||
* | Issue #1734234: Massively speedup `unicodedata.normalize()` when the | Antoine Pitrou | 2009-04-27 | 2 | -1741/+2019 |
| | | | | | string is already in normalized form, by performing a quick check beforehand. Original patch by Rauli Ruohonen. | ||||
* | Issue #5835, deprecate PyOS_ascii_formatd. | Eric Smith | 2009-04-25 | 1 | -1/+2 |
| | | | | | | If anyone wants to clean up the documentation, feel free. It's my first documentation foray, and it's not that great. Will port to py3k with a different strategy. | ||||
* | Issue #5078: Avoid redundant call to FormatError() | Thomas Heller | 2009-04-25 | 1 | -146/+142 |
| | |||||
* | Issue #3102: All global symbols that the _ctypes extension defines are | Thomas Heller | 2009-04-24 | 7 | -525/+526 |
| | | | | now prefixed with 'Py' or '_ctypes'. | ||||
* | Issue 5041: ctypes unwilling to allow pickling wide character. | Thomas Heller | 2009-04-24 | 1 | -1/+1 |
| | |||||
* | Remove duplicated function declaration. | Thomas Heller | 2009-04-16 | 2 | -2/+1 |
| | | | | Make _pagesize static. | ||||
* | Remove unneeded code. | Thomas Heller | 2009-04-16 | 3 | -18/+0 |
| | |||||
* | #5704: let python -3 imply -t as well. | Georg Brandl | 2009-04-12 | 1 | -0/+4 |
| | |||||
* | Fixes issue5705: os.setuid() and friends did not accept the same range of | Gregory P. Smith | 2009-04-05 | 1 | -17/+55 |
| | | | | values that pwd.getpwnam() returns. | ||||
* | Issue #1113244: Py_XINCREF, Py_DECREF, Py_XDECREF: Add `do { ... } while (0)' | Matthias Klose | 2009-04-05 | 1 | -2/+2 |
| | | | | to avoid compiler warnings. | ||||
* | #5615: make it possible to configure --without-threads again. | Georg Brandl | 2009-04-05 | 2 | -6/+32 |
| | |||||
* | Include tkinter.h only after including tk.h (or the equivalent for another ↵ | Guilherme Polo | 2009-04-05 | 2 | -3/+5 |
| | | | | platform). | ||||
* | Issue 3551: Raise ValueError if the size causes ERROR_NO_SYSTEM_RESOURCES | Jesse Noller | 2009-04-02 | 2 | -2/+12 |
| | |||||
* | Issue 3110: Additional protection for SEM_VALUE_MAX on platforms, thanks to ↵ | Jesse Noller | 2009-04-02 | 1 | -5/+10 |
| | | | | Martin Loewis | ||||
* | issue5545: Switch to Autoconf for multiprocessing; special thanks to Martin ↵ | Jesse Noller | 2009-04-02 | 3 | -7/+13 |
| | | | | Lowis for help | ||||
* | bounds check arguments to mmap.move(). All of them. Really. | Jack Diederich | 2009-04-01 | 1 | -9/+9 |
| | | | | fixes crasher on OS X 10.5 | ||||
* | http://bugs.python.org/issue5623 | Kristján Valur Jónsson | 2009-04-01 | 1 | -33/+24 |
| | | | | | Dynamically discoverd the size of the ioinfo struct used by the crt for its file descriptors. This should work across all flavors of the CRT. Thanks to Amaury Forgeot d'Arc Needs porting to 3.1 | ||||
* | Fixed compile error on windows. | Hirokazu Yamamoto | 2009-04-01 | 1 | -0/+3 |
| |