summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add set.isdisjoint()Raymond Hettinger2007-11-084-2/+126
|
* Backport of Guido's review of my patch.Christian Heimes2007-11-071-7/+5
|
* Backported fix for bug #1392 from py3k branch r58903.Christian Heimes2007-11-071-1/+19
|
* Add missing NEWS entryNick Coghlan2007-11-071-0/+3
|
* Add build option for faster loop execution.Raymond Hettinger2007-11-072-0/+16
|
* Optimize dict.fromkeys() with dict inputs. Useful for resetting bag/muliset ↵Raymond Hettinger2007-11-072-0/+23
| | | | counts for example.
* Fix marshal's incorrect handling of subclasses of builtin types (backport ↵Raymond Hettinger2007-11-074-16/+25
| | | | candidate).
* Add missing "return NULL" in overflow check in PyObject_Repr().Guido van Rossum2007-11-061-0/+1
|
* Fixes Issue 1385: The hmac module now computes the correct hmac when usingGregory P. Smith2007-11-064-8/+189
| | | | hashes with a block size other than 64 bytes (such as sha384 and sha512).
* Clarified the fact that you can have comments for individual archiveMark Summerfield2007-11-051-5/+7
| | | | | members even though comments to the archive itself aren't currently supported.
* Added cross-references between the various archive file formats.Mark Summerfield2007-11-055-8/+21
|
* * db->get_flags is only available in BerkeleyDB >= 4.2Gregory P. Smith2007-11-051-0/+4
|
* * db->get_types is only available in BerkeleyDB >= 4.2Gregory P. Smith2007-11-051-0/+7
| | | | * get compiling with older versions of python again for a stand alone release.
* Add the bsddb.db.DBEnv.lock_id_free method.Gregory P. Smith2007-11-053-14/+35
| | | | Improve test_lock's tempdir creation and cleanup.
* Fixes bug 477182 on pybsddb.sf.net. DB objects now load the flags andGregory P. Smith2007-11-053-15/+34
| | | | | | | | | | pay attention to them when opening an existing database. This means that d[] behaves properly even on databases previously created with DB_DUP or DB_DUPSORT flags to allow duplicate keys. http://sourceforge.net/tracker/index.php?func=detail&aid=477182&group_id=13900&atid=113900 Do not backport, this bugfix could be considered an API change.
* Fix syntax for versionchanged markup.Georg Brandl2007-11-041-4/+3
|
* Note change to get_dialect semantics in 2.5. Will backport to 2.5.Skip Montanaro2007-11-041-0/+5
|
* Add a missing quotation mark.Brett Cannon2007-11-031-1/+1
|
* Make "hashable" a glossary entry and clarify docs on __cmp__, __eq__ and ↵Georg Brandl2007-11-029-61/+84
| | | | | | | __hash__. I hope the concept of hashability is better understandable now. Thanks to Tim Hatch for pointing out the flaws here.
* Enable the full ctypes c_longdouble tests again.Thomas Heller2007-11-022-22/+22
|
* Issue #1292: On alpha, arm, ppc, and s390 linux systems theThomas Heller2007-11-023-1/+10
| | | | | --with-system-ffi configure option defaults to "yes" because the bundled libffi sources are too old.
* Fix for bug 1705170 - contextmanager swallowing StopIteration (2.5 backport ↵Nick Coghlan2007-11-022-0/+21
| | | | candidate)
* Added more file-handling related cross-references.Mark Summerfield2007-11-024-5/+15
|
* false "fix" undone as correct problem was found and fixed.Gregory P. Smith2007-11-011-4/+0
|
* Undo revision 58533 58534 fixes. Those were a workaround forGregory P. Smith2007-11-011-3/+2
| | | | a problem introduced by 58385.
* Fix bug introduced in revision 58385. Database keys could no longerGregory P. Smith2007-11-012-5/+28
| | | | | have NULL bytes in them. Replace the errant strdup with a malloc+memcpy. Adds a unit test for the correct behavior.
* Fix markup glitch.Georg Brandl2007-11-011-1/+1
|
* Removed non ASCII text from test as requested by Guido. Sorry :/Christian Heimes2007-11-011-20/+2
|
* Backport of import tests for bug http://bugs.python.org/issue1293 and bug ↵Christian Heimes2007-11-011-2/+43
| | | | http://bugs.python.org/issue1342
* #1364: os.lstat is available on Windows too, as an alias to os.stat.Georg Brandl2007-11-011-2/+3
|
* Sets are marshalable.Raymond Hettinger2007-10-311-1/+1
|
* Clarify the reasons why pickle is almost always better than marshalRaymond Hettinger2007-10-311-1/+9
|
* Adding Christian Heimes.Martin v. Löwis2007-10-311-0/+3
|
* Fix some compiler warnings for signed comparisons on Unix and Windows.Neal Norwitz2007-10-311-2/+2
|
* Make example about hiding None return values at the prompt clearer.Georg Brandl2007-10-301-1/+2
|
* Use correct markup.Georg Brandl2007-10-301-2/+2
|
* check in Tal Einat's update to tabpage.pyKurt B. Kaiser2007-10-303-9/+489
| | | | | | | | Patch 1612746 M configDialog.py M NEWS.txt AM tabbedpages.py
* Backport fixes for the code that decodes octal escapes (and for PyStringGuido van Rossum2007-10-292-7/+12
| | | | | | | also hex escapes) -- this was reaching beyond the end of the input string buffer, even though it is not supposed to be \0-terminated. This has no visible effect but is clearly the correct thing to do. (In 3.0 it had a visible effect after removing ob_sstate from PyString.)
* Patch 1353 by Jacob Winther.Guido van Rossum2007-10-291-0/+1
| | | | Add mp4 mapping to mimetypes.py.
* Add confirmation dialog before printing. Patch 1717170 Tal Einat.Kurt B. Kaiser2007-10-282-1/+13
|
* Enable platform-specific tweaks for FreeBSD 8 (exactly same to FreeBSD 7's yet)Hye-Shik Chang2007-10-285-4/+5
|
* - Add support for FreeBSD 8 which is recently forked from FreeBSD 7.Hye-Shik Chang2007-10-285-24/+673
| | | | - Regenerate IN module for most recent maintenance tree of FreeBSD 6 and 7.
* Update URL for Pygments. 0.8.1 is no longer availableNeal Norwitz2007-10-271-1/+1
|
* Fix new pop() method on os.environ on ignorecase-platforms.Georg Brandl2007-10-261-1/+1
|
* 1. Add comments to provide top-level documentation.Kurt B. Kaiser2007-10-261-30/+68
| | | | | 2. Refactor to use more descriptive names. 3. Enhance tests in main().
* Correct an ancient bug in an unused path by removing that path: register() isKurt B. Kaiser2007-10-251-5/+1
| | | | now idempotent.
* ffi_type_longdouble may be already #defined.Thomas Heller2007-10-251-2/+4
| | | | See issue 1324.
* - Build using system ffi library on arm*-linux*, pass --with-system-ffi to ↵Matthias Klose2007-10-252-3/+3
| | | | CONFIG_ARGS
* Missing DECREFsRaymond Hettinger2007-10-251-0/+2
|
* Bug #1287: make os.environ.pop() work as expected.Georg Brandl2007-10-243-3/+13
|