Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #7466: segmentation fault when the garbage collector is called | Antoine Pitrou | 2009-12-12 | 2 | -1/+5 |
| | | | | | | in the middle of populating a tuple. Patch by Florent Xicluna. (note: no NEWS entry for trunk since the bug was introduced in 2.7/3.1) | ||||
* | Issue #3366: Add lgamma function to math module. | Mark Dickinson | 2009-12-11 | 5 | -6/+216 |
| | |||||
* | Issue #7470: logging: fix bug in Unicode encoding fallback. | Vinay Sajip | 2009-12-11 | 2 | -3/+5 |
| | |||||
* | using an existing file to avoid dealing with a sleep to test file ages | Tarek Ziadé | 2009-12-10 | 1 | -47/+26 |
| | |||||
* | added test coverage for distutils.dep_util, and cleaned up the module | Tarek Ziadé | 2009-12-10 | 2 | -37/+132 |
| | |||||
* | Replace the size check for PyMem_MALLOC and PyMem_REALLOC with an almost | Mark Dickinson | 2009-12-10 | 1 | -2/+2 |
| | | | | | | | | equivalent[*] check that doesn't produce compiler warnings about a 'x < 0' check on an unsigned type. [*] it's equivalent for inputs of type size_t or Py_ssize_t, or any smaller unsigned or signed integer type. | ||||
* | Fix an issue with the detection of a non-existing SDK | Ronald Oussoren | 2009-12-10 | 1 | -3/+3 |
| | | | | | | | on OSX. Without this patch it wasn't possible after all to compile extensions on OSX 10.6 with the binary installer unless the user had installed the (non-default) 10.4u SDK. | ||||
* | Add a reverse() method to collections.deque(). | Raymond Hettinger | 2009-12-10 | 4 | -0/+63 |
| | |||||
* | Fix variants of deque.extend: d.extend(d) d+=d d.extendleft(d) | Raymond Hettinger | 2009-12-10 | 3 | -0/+53 |
| | |||||
* | substitute PyDict_Check() for PyObject_IsInstance | Benjamin Peterson | 2009-12-10 | 1 | -1/+1 |
| | |||||
* | Skip new imaplib SSL tests if ssl is not available. | R. David Murray | 2009-12-09 | 1 | -14/+31 |
| | |||||
* | Issue 5949: fixed IMAP4_SSL hang when the IMAP server response is | R. David Murray | 2009-12-09 | 3 | -4/+170 |
| | | | | | | missing proper end-of-line termination. Patch and tests by Scott Dial. The new tests include a test harness which will make it easier to add additional tests. | ||||
* | Make test_pipes a little bit more robust. | Antoine Pitrou | 2009-12-08 | 1 | -3/+6 |
| | |||||
* | Fix transient refleaks in test_urllib. Thanks to Florent Xicluna. | Antoine Pitrou | 2009-12-08 | 1 | -0/+2 |
| | |||||
* | Fix the transient refleaks in test_zipimport_support. | Antoine Pitrou | 2009-12-08 | 2 | -1/+3 |
| | | | | Diagnosis and original patch by Florent Xicluna (flox). | ||||
* | Fix for issue 7452: HAVE_GCC_ASM_FOR_X87 gets set when doing a universal ↵ | Ronald Oussoren | 2009-12-08 | 1 | -0/+5 |
| | | | | | | | build on an i386 based machine, but should only be active when compiling the x86 part of the universal binary. | ||||
* | Issue #6986: Fix crash in the JSON C accelerator when called with the | Antoine Pitrou | 2009-12-08 | 3 | -6/+31 |
| | | | | wrong parameter types. Patch by Victor Stinner. | ||||
* | removed the usage of rfc822 in favor of email.message.Message | Tarek Ziadé | 2009-12-08 | 1 | -32/+31 |
| | |||||
* | Issue #7457: added a read_pkg_file method to ↵ | Tarek Ziadé | 2009-12-08 | 5 | -19/+151 |
| | | | | distutils.dist.DistributionMetadata so we can read back PKG-INFO files | ||||
* | Typo fix; grammar fix | Andrew M. Kuchling | 2009-12-08 | 1 | -3/+3 |
| | |||||
* | fix test_parser from tokenizer tweak | Benjamin Peterson | 2009-12-06 | 1 | -4/+4 |
| | |||||
* | Add UUIDs for 2.7. Drop UUIDs for 2.4. | Martin v. Löwis | 2009-12-06 | 1 | -17/+9 |
| | |||||
* | logging: Improved support for SMTP over TLS. | Vinay Sajip | 2009-12-06 | 1 | -5/+8 |
| | |||||
* | logging: Added optional 'secure' parameter to SMTPHandler. | Vinay Sajip | 2009-12-06 | 2 | -2/+13 |
| | |||||
* | rewrite translate_newlines for clarity | Benjamin Peterson | 2009-12-06 | 1 | -12/+11 |
| | |||||
* | Fixed #1923: make sure we don't strip meaningful whitespace in PKG-INFO ↵ | Tarek Ziadé | 2009-12-06 | 3 | -2/+21 |
| | | | | Description field | ||||
* | fix date | Benjamin Peterson | 2009-12-05 | 1 | -1/+1 |
| | |||||
* | post release version bump | Benjamin Peterson | 2009-12-05 | 2 | -1/+13 |
| | |||||
* | tag 2.7 alpha 1 | Benjamin Peterson | 2009-12-05 | 1 | -0/+1 |
| | |||||
* | bump version to 2.7a1v2.7a1 | Benjamin Peterson | 2009-12-05 | 6 | -8/+8 |
| | |||||
* | move RPM spec for 2.7 | Benjamin Peterson | 2009-12-05 | 1 | -0/+0 |
| | |||||
* | regenerate pydoc_topics | Benjamin Peterson | 2009-12-05 | 1 | -29/+29 |
| | |||||
* | Add missing issue number in Misc/NEWS entry. | Mark Dickinson | 2009-12-04 | 1 | -1/+1 |
| | |||||
* | Avoid undefined behaviour due to overflow in i_divmod (Objects/intobject.c). | Mark Dickinson | 2009-12-04 | 1 | -1/+10 |
| | |||||
* | Issue 7431: use TESTFN in test_linecache instead of trying to create a | R. David Murray | 2009-12-03 | 2 | -36/+36 |
| | | | | | file in the Lib/test directory, which might be read-only for the user running the tests. | ||||
* | Add Christoph Gohlke, for the issue 4120 work. | Martin v. Löwis | 2009-12-03 | 1 | -0/+1 |
| | |||||
* | Issue #4120: Drop reference to CRT from manifest when building | Martin v. Löwis | 2009-12-03 | 2 | -0/+26 |
| | | | | extensions with msvc9compiler. | ||||
* | Issue #6985: number of range() items should be constrained to lie | Mark Dickinson | 2009-12-03 | 1 | -4/+4 |
| | | | | in a Py_ssize_t, not an int. | ||||
* | disable pymalloc tricks with the --with-valgrind option #2422 | Benjamin Peterson | 2009-12-03 | 5 | -4/+225 |
| | | | | Patch from James Henstridge. | ||||
* | actually close files | Philip Jenvey | 2009-12-03 | 1 | -6/+3 |
| | |||||
* | #7177: clarify the potential PIPE deadlock warnings | Philip Jenvey | 2009-12-03 | 1 | -6/+8 |
| | |||||
* | Issue #7333: The `posix` module gains an `initgroups()` function providing | Antoine Pitrou | 2009-12-02 | 7 | -3/+69 |
| | | | | | access to the initgroups(3) C library call on Unix systems which implement it. Patch by Jean-Paul Calderone. | ||||
* | Issue #4482: Add tests for special float value formatting. | Eric Smith | 2009-12-02 | 1 | -0/+35 |
| | |||||
* | Issue #7406: Fix some occurrences of potential signed overflow in int | Mark Dickinson | 2009-12-02 | 2 | -5/+12 |
| | | | | arithmetic. | ||||
* | Markup fixes | Andrew M. Kuchling | 2009-12-02 | 1 | -3/+3 |
| | |||||
* | #7419: Fix a crash on Windows in locale.setlocale() when the category | Amaury Forgeot d'Arc | 2009-12-01 | 3 | -1/+23 |
| | | | | is outside the allowed range. | ||||
* | Fix for issue #7416: SIZEOF_UINTPTR_T can be invalid when configuring a | Ronald Oussoren | 2009-12-01 | 1 | -0/+6 |
| | | | | | | | | | | multi-architecture build (in particular when the architectures don't share a common pointer size). Fixed the same issue for SIZEOF_PTHREAD_T. (No update to the NEWS file because this is a bugfix for an as yet unreleased feature) | ||||
* | Add dtoa.c and dtoa.h to the relevant project files. | Mark Dickinson | 2009-11-30 | 3 | -0/+11 |
| | |||||
* | Update project file for new file: dtoa.c | Raymond Hettinger | 2009-11-30 | 1 | -0/+4 |
| | |||||
* | Handle step values other than one. | Raymond Hettinger | 2009-11-30 | 1 | -1/+2 |
| |