Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | Issue #9846: ZipExtFile provides no mechanism for closing the underlying ↵ | Łukasz Langa | 2010-11-22 | 1 | -2/+12 |
| | | | | file object | ||||
* | Issue #6878: Fixed return type of tkinter methods documented to return lists. | Alexander Belopolsky | 2010-11-22 | 3 | -21/+21 |
| | |||||
* | Fix test_multiprocessing when ctypes isn't available | Antoine Pitrou | 2010-11-22 | 1 | -4/+8 |
| | |||||
* | Fix tests when ctypes isn't available | Antoine Pitrou | 2010-11-22 | 1 | -0/+2 |
| | |||||
* | #9424: add a DeprecationWarning for assertEquals, assertNotEquals, ↵ | Ezio Melotti | 2010-11-22 | 5 | -50/+62 |
| | | | | assertAlmostEquals, assertNotAlmostEquals, and assert_ | ||||
* | issue 10501 | Kristján Valur Jónsson | 2010-11-22 | 2 | -23/+25 |
| | | | | | make_buildinfo regression with unquoted path Make_buildinfo.exe should be called with a quoted path, and should quote the full paths to its temp files, to support spaces in filenames. | ||||
* | Improve test for 'python -m unittest' launching test discovery | Michael Foord | 2010-11-22 | 1 | -5/+4 |
| | |||||
* | Issue #10459: Update CJK character names to Unicode 6.0. | Martin v. Löwis | 2010-11-22 | 4 | -7/+33 |
| | |||||
* | Fix - s/urllib2/urllib.request/ | Senthil Kumaran | 2010-11-22 | 1 | -1/+1 |
| | |||||
* | Fix Issue4493 - urllib2 adds '/' to the path component of url, when it does not | Senthil Kumaran | 2010-11-22 | 4 | -2/+29 |
| | | | | starts with one. This behavior is exhibited by browser and other clients. | ||||
* | Fix resource warning from patchcheck.py | Éric Araujo | 2010-11-22 | 1 | -6/+9 |
| | |||||
* | Remove unnecessary `object` base class in docs (#10366). | Éric Araujo | 2010-11-22 | 13 | -17/+26 |
| | | | | Also add a note about inheritance from `object` being default. | ||||
* | Issue #10138: Removed 'indefinitely' from the proleptic calendar description. | Alexander Belopolsky | 2010-11-22 | 1 | -1/+1 |
| | |||||
* | Fix one compileall test (#10453). Patch by Michele Orrù. | Éric Araujo | 2010-11-22 | 1 | -1/+1 |
| | |||||
* | Add myself for unittest and fix Alexander username | Ezio Melotti | 2010-11-22 | 1 | -6/+6 |
| | |||||
* | r84925 followup: add docstring for get_makefile_filename (+PEP 257 fixes) | Éric Araujo | 2010-11-22 | 1 | -6/+7 |
| | |||||
* | Fix typo | Éric Araujo | 2010-11-22 | 1 | -1/+1 |
| | |||||
* | Update maintainers | Raymond Hettinger | 2010-11-22 | 1 | -5/+6 |
| | |||||
* | Quote the paths in the event that they contain spaces. | Brian Curtin | 2010-11-22 | 1 | -1/+1 |
| | |||||
* | Issue 3292: Fixup to the Sequence docs. | Raymond Hettinger | 2010-11-21 | 1 | -1/+1 |
| | |||||
* | Fix #6378. Start IDLE using the proper version of Python based on the directory | Brian Curtin | 2010-11-21 | 2 | -2/+6 |
| | | | | | | tree that idle.bat resides in. Works with any/all versions of Python installed concurrently. | ||||
* | Issue 6722: Improve the namedtuple examples. | Raymond Hettinger | 2010-11-21 | 1 | -1/+5 |
| | |||||
* | Issue 10470: 'python -m unittest' launches test discovery by default.(If ↵ | Michael Foord | 2010-11-21 | 5 | -14/+54 |
| | | | | you need to pass options to test discovery the discover subcommand must still be specified explicitly.) | ||||
* | Issue #10488: Bring documentation for 'float' builtin up to date. | Mark Dickinson | 2010-11-21 | 1 | -20/+48 |
| | |||||
* | Add CSS rule for the deprecated-removed directive | Ezio Melotti | 2010-11-21 | 1 | -5/+5 |
| | |||||
* | Add sets to the precedence table. | Brett Cannon | 2010-11-21 | 1 | -0/+1 |
| | |||||
* | Make test_nntplib more robust | Antoine Pitrou | 2010-11-21 | 1 | -2/+4 |
| | |||||
* | Fix TestBytesGeneratorIdempotent tests and a couple bugs they revealed. | R. David Murray | 2010-11-21 | 2 | -15/+37 |
| | | | | | | | | | The tests that were failing on (some) windows machines, where the msg_XX.txt files used native \r\n lineseps are now also run on machines that use \n natively, and conversely the \n tests are run on Windows. The failing tests revealed one place where linesep needed to be added to a flatten call in generator. There was also another that the tests didn't catch, so I added a test for that case as well. | ||||
* | fix refleak | Benjamin Peterson | 2010-11-21 | 2 | -0/+6 |
| |