summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* #6774: explain shutdown() behavior varying with platform.Georg Brandl2010-07-111-1/+3
|
* Fix for issue 9164Ronald Oussoren2010-07-112-2/+3
|
* #3214 followup: add link to ABC entry.Georg Brandl2010-07-111-3/+3
|
* Silence makeindex.Georg Brandl2010-07-111-0/+2
|
* Issue2007: Removing reference to MSIE Cookie handling by mechanize. ↵Senthil Kumaran2010-07-111-9/+2
| | | | Suggested by John J Lee.
* remove unneeded error checkBenjamin Peterson2010-07-111-8/+0
|
* Stricter verification for file based url scheme and reliance on ftp protocol.Senthil Kumaran2010-07-112-1/+5
|
* ValueError is eventually what we want to move to, I supposeBenjamin Peterson2010-07-101-2/+2
|
* Add missing docs for re module 'purge' function.R. David Murray2010-07-101-0/+5
|
* Fix error message for comparing single line strings in ↵Michael Foord2010-07-102-3/+23
| | | | | | unittest.TestCase.assertEqual. Issue 9174.
* Fix 'refleak' introduced by fnmatch cache purge tests.R. David Murray2010-07-103-2/+18
| | | | | This introduces a 'purge' function for the fnmatch module analogous to the 'purge' function in the re module.
* #8564: update docs on integrating doctest/unittest with unittest(2) test ↵Georg Brandl2010-07-101-8/+6
| | | | discovery.
* #8456: fix signature of sqlite3.connect().Georg Brandl2010-07-101-1/+1
|
* #8338: fix outdated class name.Georg Brandl2010-07-101-2/+2
|
* #1434090: properly append child in expatbuilder doctype handler.Georg Brandl2010-07-101-1/+1
|
* #3214: improve description of duck-typing in glossary.Georg Brandl2010-07-101-3/+3
|
* #3071: tell how many values were expected when unpacking too many.Georg Brandl2010-07-102-4/+5
|
* Emphasize role of count for Pascal string.Georg Brandl2010-07-101-11/+9
|
* Fix markup.Georg Brandl2010-07-102-4/+8
|
* Oops. Fix distutils tests that r82746 broke.Jeffrey Yasskin2010-07-091-1/+3
|
* be more robust across platformsBenjamin Peterson2010-07-091-1/+1
|
* Silence gcc warning. (In function 'bytearray_init': warning: 'value' may be ↵Mark Dickinson2010-07-091-0/+2
| | | | used uninitialized in this function).
* remove SocketIO.__del__; close() can handle itBenjamin Peterson2010-07-091-4/+0
|
* Issue #9189: Allow users to set $CFLAGS, $CPPFLAGS, and $LDFLAGS when runningJeffrey Yasskin2010-07-096-38/+53
| | | | | | | | | | | | | configure to append to Python's default values for those variables, and similarly allow users to set $XXFLAGS on the make command line to append to the values set by configure. In the makefile, this renames the variables that used to be $XXFLAGS to $PY_XXFLAGS, and renames the old $PY_CFLAGS to $PY_CORE_CFLAGS. To compensate, sysconfig now aliases $XXFLAGS=$PY_XXFLAGS so that scripts using it keep working. I see that as the right interface, not a backward-compatibility hack, since these are logically the $XXFLAGS variables; we just use a different name in the makefile to deal with make's semantics.
* Re-flow several long lines from #1578269.Brian Curtin2010-07-096-22/+41
|
* Adding versionchanged to the various Windows os.symlink additions, alongBrian Curtin2010-07-092-7/+15
| | | | with a few minor touchups.
* Fix the breakage of Lib/tarfile.py on non-Windows platforms due toBrian Curtin2010-07-092-6/+15
| | | | | | | | | using WindowsError in a try/except. Only add WindowsError to the list of exceptions to catch when we are actually running on Windows. Additionally, add a call that was left out in test_posixpath. Thanks Amaury, Antoine, and Jason.
* wrapBenjamin Peterson2010-07-091-1/+2
|
* allow more exceptionsBenjamin Peterson2010-07-091-3/+3
|
* Reorder Jason "two O's" CoombsBrian Curtin2010-07-091-1/+1
|
* OverflowError is fineBenjamin Peterson2010-07-091-1/+2
|
* Fix sort order mistake in Misc/ACKS.R. David Murray2010-07-091-1/+1
|
* 7846: limit fnmatch pattern cache to _MAXCACHE=100 entries.R. David Murray2010-07-094-1/+22
| | | | Patch by Andrew Clegg.
* 2.7 is now stable.Georg Brandl2010-07-091-2/+1
|
* use assert methodBenjamin Peterson2010-07-091-1/+1
|
* fix repr of complicated structseqs #9206Benjamin Peterson2010-07-082-3/+29
|
* assert tuple inheritanceBenjamin Peterson2010-07-081-0/+1
|
* Undo inadvertant checkin.Brian Curtin2010-07-081-1/+1
|
* Implement #1578269. Patch by Jason R. Coombs.Brian Curtin2010-07-0818-281/+1167
| | | | | | | | | | | | | | | | Added Windows support for os.symlink when run on Windows 6.0 or greater, aka Vista. Previous Windows versions will raise NotImplementedError when trying to symlink. Includes numerous test updates and additions to test_os, including a symlink_support module because of the fact that privilege escalation is required in order to run the tests to ensure that the user is able to create symlinks. By default, accounts do not have the required privilege, so the escalation code will have to be exposed later (or documented on how to do so). I'll be following up with that work next. Note that the tests use ctypes, which was agreed on during the PyCon language summit.
* Issue #9136: Profiling Decimal gave 'dictionary changed size during iteration'.Mark Dickinson2010-07-082-13/+35
| | | | Remove the use of locals() that caused this error.
* Fix misplaced exactness check that was causing unnecessary work in ↵Mark Dickinson2010-07-081-3/+4
| | | | Decimal.__pow__.
* Fix a performance issue in Decimal.pow. Thanks Stefan Krah for finding this.Mark Dickinson2010-07-083-6/+25
|
* Issue #8605: Skip test_gdb if Python is compiled with optimizations.Antoine Pitrou2010-07-082-0/+12
|
* In test_decimal, convert heuristic for skipping tests into an explicit skiplist.Mark Dickinson2010-07-081-41/+35
|
* Fix typo in a comment in mathmodule.c.Ezio Melotti2010-07-081-1/+1
|
* Issue #5288: Eliminated round-trips between timdelta and int offsetsAlexander Belopolsky2010-07-071-475/+398
|
* ValueError in this case is also acceptableBenjamin Peterson2010-07-071-4/+8
|
* make struct sequences subclass tuple; kill lots of codeBenjamin Peterson2010-07-073-215/+23
| | | | This fixes #8413.
* add NEWSBenjamin Peterson2010-07-071-0/+3
|
* Turn more notes into comments.Georg Brandl2010-07-073-7/+6
|