Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix for #8879. | Brian Curtin | 2010-11-28 | 2 | -2/+23 |
| | | | | | | | Amaury noticed that this was originally written in a way that would fail on names that can't be encoded with the mbcs codec. Restructured the function to work with wide names first then narrow names second, to fall in line with the way other functions are written in posixmodule.c. | ||||
* | Add callable() to the built-in functions table. | Ezio Melotti | 2010-11-28 | 1 | -9/+9 |
| | |||||
* | there's now a setup.py switch for this | Benjamin Peterson | 2010-11-28 | 1 | -1/+1 |
| | |||||
* | Windows: fix leak in posix_listdir. | Stefan Krah | 2010-11-27 | 1 | -0/+1 |
| | |||||
* | Issue #10518: Bring back the callable() builtin. | Antoine Pitrou | 2010-11-27 | 5 | -14/+61 |
| | | | | Approved by Guido (BDFL) and Georg (RM). | ||||
* | Add version-added note twice for new difflib SequenceMatcher autojunk parameter. | Terry Reedy | 2010-11-27 | 1 | -0/+6 |
| | |||||
* | Make doc for PyErr_Format() up to date. | Antoine Pitrou | 2010-11-27 | 1 | -74/+5 |
| | |||||
* | Roumen Petrov's fix for when all paths are absolute. (Issue 10520) | Barry Warsaw | 2010-11-27 | 1 | -1/+2 |
| | |||||
* | Fix additional leaks. | Stefan Krah | 2010-11-27 | 1 | -0/+2 |
| | |||||
* | Issue 10242: unittest.assertItemsEqual makes too many assumptions. | Raymond Hettinger | 2010-11-27 | 5 | -39/+60 |
| | |||||
* | Replace _nbits() with int.bit_length(). | Raymond Hettinger | 2010-11-27 | 1 | -17/+1 |
| | |||||
* | Rewrap long lines + minor edits | Éric Araujo | 2010-11-26 | 1 | -11/+11 |
| | |||||
* | Use link-generating markup (see #9312) | Éric Araujo | 2010-11-26 | 1 | -1/+2 |
| | |||||
* | Fixed deprecation warnings. | Alexander Belopolsky | 2010-11-26 | 1 | -2/+2 |
| | |||||
* | Further indentation cleanup. | Stefan Krah | 2010-11-26 | 1 | -49/+49 |
| | |||||
* | Issue #10383: Fix two leaks. | Stefan Krah | 2010-11-26 | 1 | -7/+11 |
| | |||||
* | Better example for os.system(): do not change the system time. | Georg Brandl | 2010-11-26 | 1 | -3/+3 |
| | |||||
* | Typo fix. | Georg Brandl | 2010-11-26 | 1 | -2/+2 |
| | |||||
* | Remove parenthetical remark that is confusing now that the module is not ↵ | Georg Brandl | 2010-11-26 | 1 | -6/+5 |
| | | | | named "__builtin__" anymore. | ||||
* | #10420: fix docs of bdb.effective(). | Georg Brandl | 2010-11-26 | 1 | -6/+4 |
| | |||||
* | Modernize code in effective(). | Georg Brandl | 2010-11-26 | 1 | -21/+15 |
| | |||||
* | Use PyLong_FromLong where appropriate. | Georg Brandl | 2010-11-26 | 2 | -8/+5 |
| | |||||
* | #10526: fix typo. | Georg Brandl | 2010-11-26 | 1 | -1/+1 |
| | |||||
* | Indentation cleanup. | Stefan Krah | 2010-11-26 | 1 | -9/+9 |
| | |||||
* | s/colour/color/g | Senthil Kumaran | 2010-11-26 | 1 | -3/+3 |
| | |||||
* | #10453 follow-up: Fix test_quiet on Windows, thanks to Stephan Krah. | Éric Araujo | 2010-11-26 | 1 | -6/+8 |
| | |||||
* | Issue #7094: Add alternate ('#') flag to __format__ methods for float, ↵ | Eric Smith | 2010-11-25 | 9 | -36/+87 |
| | | | | complex and Decimal. Allows greater control over when decimal points appear. Added to make transitioning from %-formatting easier. '#g' still has a problem with Decimal which I'll fix soon. | ||||
* | Mouse support and colour to Demo/curses/life.py by Dafydd Crosby | Senthil Kumaran | 2010-11-25 | 1 | -2/+36 |
| | |||||
* | Fix compilation warnings seen on Windows. | Amaury Forgeot d'Arc | 2010-11-25 | 1 | -7/+7 |
| | | | | 'typecode' is always an ascii letter, there was no data lost. | ||||
* | Clean-up docstring, comments, and whitespace. | Raymond Hettinger | 2010-11-25 | 1 | -5/+15 |
| | |||||
* | Issue 2986: Add autojunk paramater to SequenceMatcher to turn off heuristic. ↵ | Terry Reedy | 2010-11-25 | 4 | -40/+96 |
| | | | | Patch by Terry Reedy, Eli Bendersky, and Simon Cross | ||||
* | sys.abiflags is not defined on all platforms. | Barry Warsaw | 2010-11-25 | 1 | -1/+6 |
| | |||||
* | sys.abiflags may not be defined on all platforms. | Barry Warsaw | 2010-11-25 | 1 | -1/+5 |
| | |||||
* | Add NEWS entry for r86732 and fix double function in the table. | Ezio Melotti | 2010-11-24 | 2 | -4/+9 |
| | |||||
* | Put /usr/local paths after the relative paths in library_dirs and | Barry Warsaw | 2010-11-24 | 1 | -8/+18 |
| | | | | | include_dirs, so installed non-matching shared libraries don't break extension module linking. Fixes issue 10520. | ||||
* | Fix #8879. Add os.link support to Windows. | Brian Curtin | 2010-11-24 | 4 | -1/+66 |
| | | | | | | | | Additionally, the st_ino attribute of stat structures was not being filled in. This was left out of the fix to #10027 and was noticed due to test_tarfile failing when applying the patch for this issue. An earlier version of the fix to #10027 included st_ino, but that attribute got lost in the shuffle of a few review/fix cycles. All tests pass. | ||||
* | #10299: Add a table that lists all the built-in functions in functions.rst | Ezio Melotti | 2010-11-24 | 1 | -0/+18 |
| | |||||
* | Final patch for issue 9807. | Barry Warsaw | 2010-11-24 | 7 | -328/+332 |
| | |||||
* | Remove unnecessary import. | Barry Warsaw | 2010-11-24 | 1 | -1/+0 |
| | |||||
* | ifdef a Windows specific section. | Brian Curtin | 2010-11-24 | 1 | -0/+2 |
| | |||||
* | Fix #10027. st_nlink not set on Windows calls to os.stat/lstat. | Brian Curtin | 2010-11-24 | 2 | -302/+282 |
| | | | | | | Note: This patch has no tests because as of now there is no way to create links. #8879 adds that and the tests will go in there. I've manually observed that existing links on my system function properly with this. | ||||
* | Remove UTF-8 BOM. | Georg Brandl | 2010-11-24 | 1 | -1/+1 |
| | |||||
* | IssIssue 1859: Add Jeremy Thurgood to Misc/ACKS | Terry Reedy | 2010-11-23 | 1 | -1/+2 |
| | |||||
* | Issue 1859: Doc that textwrap does not break on \n (pending possible ↵ | Terry Reedy | 2010-11-23 | 1 | -0/+7 |
| | | | | behavior patch). Patch by Jeremy Thurgood. | ||||
* | assert.h is also included. Thanks to Savio Sena. | Georg Brandl | 2010-11-23 | 1 | -2/+2 |
| | |||||
* | #10511: clarification of what heaps are; suggested by Johannes Hoff. | Georg Brandl | 2010-11-23 | 1 | -5/+6 |
| | |||||
* | #10468: document Unicode exception creation and access functions. | Georg Brandl | 2010-11-23 | 2 | -4/+79 |
| | |||||
* | Issue 9222 Fix filetypes for open dialog | Terry Reedy | 2010-11-23 | 1 | -2/+2 |
| | |||||
* | information on Issue #9846 | Łukasz Langa | 2010-11-23 | 1 | -0/+2 |
| | |||||
* | zipfile: remove remaining ResourceWarnings | Łukasz Langa | 2010-11-23 | 2 | -16/+24 |
| |