Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bump version to 2.7a3v2.7a3 | Benjamin Peterson | 2010-02-06 | 2 | -3/+3 |
| | |||||
* | issue #7728: test_timeout was using a hardcoded port, which was | R. David Murray | 2010-02-06 | 1 | -0/+8 |
| | | | | | causing buildbot failures. Changed to use test_support.bind_port. Patch by Florent Xicluna. | ||||
* | Resolve bug 7847 by including documentation for -J, -U, and -X under "Options | Barry Warsaw | 2010-02-05 | 1 | -2/+5 |
| | | | | you shouldn't use". | ||||
* | Issue #5677: Explicitly forbid write operations on read-only file objects, | Antoine Pitrou | 2010-02-05 | 2 | -0/+6 |
| | | | | | | and read operations on write-only file objects. On Windows, the system C library would return a bogus result; on Solaris, it was possible to crash the interpreter. Patch by Stefan Krah. | ||||
* | normalize exceptions passed to the __exit__ method #7853 | Benjamin Peterson | 2010-02-05 | 1 | -0/+3 |
| | | | | | | | | | In Python 2.x, exceptions in finally blocks are not normalized. Since with statements are implemented using finally blocks, ceval.c had to be tweaked to distinguish between with finally blocks and normal ones. A test for the finalization of generators containing with statements was also added. | ||||
* | Issue #7851: logging: clarification on logging configuration files. | Vinay Sajip | 2010-02-04 | 1 | -0/+2 |
| | |||||
* | Issue #4772: Raise a ValueError when an unknown Bluetooth protocol is | Antoine Pitrou | 2010-02-04 | 1 | -0/+5 |
| | | | | | | specified, rather than fall through to AF_PACKET (in the `socket` module). Also, raise ValueError rather than TypeError when an unknown TIPC address type is specified. Patch by Brian Curtin. | ||||
* | Logging: Implemented PEP 391. | Vinay Sajip | 2010-02-04 | 1 | -0/+2 |
| | |||||
* | Add Chris Rebert to ACKS for issue 6760 Popen doc improvements. | R. David Murray | 2010-02-04 | 1 | -0/+1 |
| | |||||
* | Issue #7385: Fix a crash in `MemoryView_FromObject` when | Antoine Pitrou | 2010-02-02 | 1 | -0/+3 |
| | | | | `PyObject_GetBuffer` fails. Patch by Florent Xicluna. | ||||
* | Issue #7819: Check sys.call_tracing() arguments types. | Victor Stinner | 2010-01-31 | 1 | -0/+2 |
| | | | | py3k was already patched by issue #3661. | ||||
* | - Issue #6939: Fix file I/O objects in the `io` module to keep the original | Antoine Pitrou | 2010-01-31 | 2 | -0/+6 |
| | | | | | | file position when calling `truncate()`. It would previously change the file position to the given argument, which goes against the tradition of ftruncate() and other truncation APIs. Patch by Pascal Chambon. | ||||
* | - Update python manual page (options -B, -O0, -s, environment variables | Matthias Klose | 2010-01-31 | 2 | -5/+42 |
| | | | | PYTHONDONTWRITEBYTECODE, PYTHONNOUSERSITE). | ||||
* | Issue #7767: Add new C-API function PyLong_AsLongLongAndOverflow, a | Mark Dickinson | 2010-01-30 | 1 | -0/+3 |
| | | | | | long long variant of PyLong_AsLongAndOverflow. Patch by Case Van Horsen. | ||||
* | Add Victor Stinner. | Martin v. Löwis | 2010-01-30 | 1 | -0/+3 |
| | |||||
* | Issue #7788: Fix a crash produced by deleting a list slice with huge | Mark Dickinson | 2010-01-29 | 1 | -0/+3 |
| | | | | step value. Patch by Marcin Bachry. | ||||
* | an -> a | Benjamin Peterson | 2010-01-28 | 1 | -2/+2 |
| | |||||
* | add compat note | Benjamin Peterson | 2010-01-28 | 1 | -0/+2 |
| | |||||
* | Issue #7610: Reworked implementation of the internal | Antoine Pitrou | 2010-01-27 | 1 | -0/+7 |
| | | | | | | | | :class:`zipfile.ZipExtFile` class used to represent files stored inside an archive. The new implementation is significantly faster and can be wrapped in a :class:`io.BufferedReader` object for more speedups. It also solves an issue where interleaved calls to `read()` and `readline()` give wrong results. Patch by Nir Aides. | ||||
* | Issue #6963: Added maxtasksperchild argument to multiprocessing.Pool | Jesse Noller | 2010-01-27 | 2 | -0/+6 |
| | |||||
* | raise a clear TypeError when trying to register a non-class | Benjamin Peterson | 2010-01-27 | 1 | -0/+2 |
| | |||||
* | Issue #7766: Change sys.getwindowsversion() return value to a named tuple ↵ | Eric Smith | 2010-01-27 | 1 | -0/+5 |
| | | | | and add the additional members returned in an OSVERSIONINFOEX structure. The new members are service_pack_major, service_pack_minor, suite_mask, and product_type. | ||||
* | Add a news entry for the functions verify and vereq that have been removed ↵ | Ezio Melotti | 2010-01-25 | 1 | -0/+2 |
| | | | | in r77729 and r77731 | ||||
* | fix an UnboundLocalError when the release file is empty #7773 | Benjamin Peterson | 2010-01-25 | 2 | -0/+4 |
| | |||||
* | Fixed #7748: now upload and register commands don't need to force the ↵ | Tarek Ziadé | 2010-01-24 | 1 | -1/+6 |
| | | | | encoding anymore : DistributionMetada returns utf8 strings | ||||
* | - Expat: Fix DoS via XML document with malformed UTF-8 sequences | Matthias Klose | 2010-01-22 | 1 | -0/+6 |
| | | | | (CVE_2009_3560). | ||||
* | - Mention CVE-2009-3720 for change in r74429. | Matthias Klose | 2010-01-22 | 1 | -1/+1 |
| | |||||
* | Add a NEWS entry for r77599 and r77600. | Antoine Pitrou | 2010-01-18 | 1 | -0/+7 |
| | |||||
* | Issue #7632: When Py_USING_MEMORY_DEBUGGER is defined, disable the | Mark Dickinson | 2010-01-17 | 1 | -0/+4 |
| | | | | | | | | private memory allocation scheme in dtoa.c, along with a piece of code that caches powers of 5 for future use. This makes it easier to detect dtoa.c memory leaks with Valgrind or similar tools. Patch by Stefan Krah. | ||||
* | - Issue #7658: Ensure that the new pythonw executable works on OSX 10.4 | Ronald Oussoren | 2010-01-17 | 1 | -1/+5 |
| | | | | | | | | | | | | - Issue #7714: Use ``gcc -dumpversion`` to detect the version of GCC on MacOSX. - Make configure look for util.h as well as libutil.h. The former is the header file that on OSX contains the defition of openpty. (Needed to compile for OSX 10.4 on OSX 10.6) - Use the correct definition of CC to compile the pythonw executable | ||||
* | Issue #7632: Fix a memory leak in _Py_dg_strtod. | Mark Dickinson | 2010-01-17 | 1 | -2/+3 |
| | |||||
* | Issue #7561: Operations on empty bytearrays (such as `int(bytearray())`) | Antoine Pitrou | 2010-01-17 | 1 | -0/+5 |
| | | | | | | could crash in many places because of the PyByteArray_AS_STRING() macro returning NULL. The macro now returns a statically allocated empty string instead. | ||||
* | typo: use one instead instead of two | Ezio Melotti | 2010-01-16 | 1 | -2/+2 |
| | |||||
* | Issue #7632: Fix a serious wrong output bug for string -> float conversion. | Mark Dickinson | 2010-01-16 | 1 | -4/+6 |
| | | | | | | Also remove some now unused variables, and add comments clarifying the possible outputs of the parsing section of _Py_dg_strtod. Thanks Eric Smith for reviewing. | ||||
* | Issue #1670765: Prevent email.generator.Generator from re-wrapping | R. David Murray | 2010-01-16 | 1 | -0/+6 |
| | | | | | | headers in multipart/signed MIME parts, which fixes one of the sources of invalid modifications to such parts by Generator. Patch and tests by Martin von Gagern. | ||||
* | issue5063: Fixes for building RPM on CentOS plus misc .spec file enhancements. | Sean Reifscheider | 2010-01-16 | 1 | -31/+34 |
| | |||||
* | Fixed issue-number mistake in NEWS update. | Vinay Sajip | 2010-01-15 | 1 | -1/+1 |
| | |||||
* | Issue #7701: Fix crash in binascii.b2a_uu() in debug mode when given a | Antoine Pitrou | 2010-01-15 | 1 | -0/+3 |
| | | | | 1-byte argument. Patch by Victor Stinner. | ||||
* | The silencing of DeprecationWarning was not taking -3 into consideration. Since | Brett Cannon | 2010-01-14 | 1 | -1/+2 |
| | | | | | | | | Py3K warnings are DeprecationWarning by default this was causing -3 to essentially be a no-op. Now DeprecationWarning is only silenced if -3 is not used. Closes issue #7700. Thanks Ezio Melotti and Florent Xicluna for patch help. | ||||
* | Issue #3299: Fix possible crash in the _sre module when given bad | Antoine Pitrou | 2010-01-14 | 1 | -0/+3 |
| | | | | argument values in debug mode. Patch by Victor Stinner. | ||||
* | Issue #7703: Add support for the new buffer API to functions of the | Antoine Pitrou | 2010-01-14 | 1 | -0/+4 |
| | | | | | binascii module. Backported from py3k by Florent Xicluna, with some additional tests. | ||||
* | Update PyEval_EvalFrame to PyEval_EvalFrameEx. This looks to have been done | Skip Montanaro | 2010-01-14 | 1 | -3/+9 |
| | | | | | partially before. Also add a comment describing how this might have to work with different versions of the interpreter. | ||||
* | Add ACKS entry for r77472. | Antoine Pitrou | 2010-01-13 | 1 | -0/+1 |
| | |||||
* | Issue #2846: Add support for gzip.GzipFile reading zero-padded files. | Antoine Pitrou | 2010-01-13 | 1 | -0/+3 |
| | | | | Patch by Brian Curtin. | ||||
* | Issue #7661: Allow ctypes to be built from a non-ASCII directory path. | Antoine Pitrou | 2010-01-13 | 1 | -0/+6 |
| | | | | Patch by Florent Xicluna. | ||||
* | Issue #7622: Improve the split(), rsplit(), splitlines() and replace() | Antoine Pitrou | 2010-01-13 | 1 | -0/+4 |
| | | | | | methods of bytes, bytearray and unicode objects by using a common implementation based on stringlib's fast search. Patch by Florent Xicluna. | ||||
* | Issue #7632: Fix a bug in dtoa.c that could lead to incorrectly-rounded ↵ | Mark Dickinson | 2010-01-12 | 1 | -1/+2 |
| | | | | results. | ||||
* | Issue #7632: Fix a problem with _Py_dg_strtod that could lead to | Mark Dickinson | 2010-01-12 | 1 | -0/+4 |
| | | | | | crashes in debug builds, for certain long numeric strings corresponding to subnormal values. | ||||
* | #5827: make sure that normpath preserves unicode | Ezio Melotti | 2010-01-12 | 1 | -0/+3 |
| | |||||
* | Issue #1967: Backport dictionary views. | Alexandre Vassalotti | 2010-01-11 | 1 | -0/+2 |
| |