Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add set.isdisjoint() | Raymond Hettinger | 2007-11-08 | 4 | -2/+126 |
| | |||||
* | Backport of Guido's review of my patch. | Christian Heimes | 2007-11-07 | 1 | -7/+5 |
| | |||||
* | Backported fix for bug #1392 from py3k branch r58903. | Christian Heimes | 2007-11-07 | 1 | -1/+19 |
| | |||||
* | Add missing NEWS entry | Nick Coghlan | 2007-11-07 | 1 | -0/+3 |
| | |||||
* | Add build option for faster loop execution. | Raymond Hettinger | 2007-11-07 | 2 | -0/+16 |
| | |||||
* | Optimize dict.fromkeys() with dict inputs. Useful for resetting bag/muliset ↵ | Raymond Hettinger | 2007-11-07 | 2 | -0/+23 |
| | | | | counts for example. | ||||
* | Fix marshal's incorrect handling of subclasses of builtin types (backport ↵ | Raymond Hettinger | 2007-11-07 | 4 | -16/+25 |
| | | | | candidate). | ||||
* | Add missing "return NULL" in overflow check in PyObject_Repr(). | Guido van Rossum | 2007-11-06 | 1 | -0/+1 |
| | |||||
* | Fixes Issue 1385: The hmac module now computes the correct hmac when using | Gregory P. Smith | 2007-11-06 | 4 | -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 archive | Mark Summerfield | 2007-11-05 | 1 | -5/+7 |
| | | | | | members even though comments to the archive itself aren't currently supported. | ||||
* | Added cross-references between the various archive file formats. | Mark Summerfield | 2007-11-05 | 5 | -8/+21 |
| | |||||
* | * db->get_flags is only available in BerkeleyDB >= 4.2 | Gregory P. Smith | 2007-11-05 | 1 | -0/+4 |
| | |||||
* | * db->get_types is only available in BerkeleyDB >= 4.2 | Gregory P. Smith | 2007-11-05 | 1 | -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. Smith | 2007-11-05 | 3 | -14/+35 |
| | | | | Improve test_lock's tempdir creation and cleanup. | ||||
* | Fixes bug 477182 on pybsddb.sf.net. DB objects now load the flags and | Gregory P. Smith | 2007-11-05 | 3 | -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 Brandl | 2007-11-04 | 1 | -4/+3 |
| | |||||
* | Note change to get_dialect semantics in 2.5. Will backport to 2.5. | Skip Montanaro | 2007-11-04 | 1 | -0/+5 |
| | |||||
* | Add a missing quotation mark. | Brett Cannon | 2007-11-03 | 1 | -1/+1 |
| | |||||
* | Make "hashable" a glossary entry and clarify docs on __cmp__, __eq__ and ↵ | Georg Brandl | 2007-11-02 | 9 | -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 Heller | 2007-11-02 | 2 | -22/+22 |
| | |||||
* | Issue #1292: On alpha, arm, ppc, and s390 linux systems the | Thomas Heller | 2007-11-02 | 3 | -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 Coghlan | 2007-11-02 | 2 | -0/+21 |
| | | | | candidate) | ||||
* | Added more file-handling related cross-references. | Mark Summerfield | 2007-11-02 | 4 | -5/+15 |
| | |||||
* | false "fix" undone as correct problem was found and fixed. | Gregory P. Smith | 2007-11-01 | 1 | -4/+0 |
| | |||||
* | Undo revision 58533 58534 fixes. Those were a workaround for | Gregory P. Smith | 2007-11-01 | 1 | -3/+2 |
| | | | | a problem introduced by 58385. | ||||
* | Fix bug introduced in revision 58385. Database keys could no longer | Gregory P. Smith | 2007-11-01 | 2 | -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 Brandl | 2007-11-01 | 1 | -1/+1 |
| | |||||
* | Removed non ASCII text from test as requested by Guido. Sorry :/ | Christian Heimes | 2007-11-01 | 1 | -20/+2 |
| | |||||
* | Backport of import tests for bug http://bugs.python.org/issue1293 and bug ↵ | Christian Heimes | 2007-11-01 | 1 | -2/+43 |
| | | | | http://bugs.python.org/issue1342 | ||||
* | #1364: os.lstat is available on Windows too, as an alias to os.stat. | Georg Brandl | 2007-11-01 | 1 | -2/+3 |
| | |||||
* | Sets are marshalable. | Raymond Hettinger | 2007-10-31 | 1 | -1/+1 |
| | |||||
* | Clarify the reasons why pickle is almost always better than marshal | Raymond Hettinger | 2007-10-31 | 1 | -1/+9 |
| | |||||
* | Adding Christian Heimes. | Martin v. Löwis | 2007-10-31 | 1 | -0/+3 |
| | |||||
* | Fix some compiler warnings for signed comparisons on Unix and Windows. | Neal Norwitz | 2007-10-31 | 1 | -2/+2 |
| | |||||
* | Make example about hiding None return values at the prompt clearer. | Georg Brandl | 2007-10-30 | 1 | -1/+2 |
| | |||||
* | Use correct markup. | Georg Brandl | 2007-10-30 | 1 | -2/+2 |
| | |||||
* | check in Tal Einat's update to tabpage.py | Kurt B. Kaiser | 2007-10-30 | 3 | -9/+489 |
| | | | | | | | | Patch 1612746 M configDialog.py M NEWS.txt AM tabbedpages.py | ||||
* | Backport fixes for the code that decodes octal escapes (and for PyString | Guido van Rossum | 2007-10-29 | 2 | -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 Rossum | 2007-10-29 | 1 | -0/+1 |
| | | | | Add mp4 mapping to mimetypes.py. | ||||
* | Add confirmation dialog before printing. Patch 1717170 Tal Einat. | Kurt B. Kaiser | 2007-10-28 | 2 | -1/+13 |
| | |||||
* | Enable platform-specific tweaks for FreeBSD 8 (exactly same to FreeBSD 7's yet) | Hye-Shik Chang | 2007-10-28 | 5 | -4/+5 |
| | |||||
* | - Add support for FreeBSD 8 which is recently forked from FreeBSD 7. | Hye-Shik Chang | 2007-10-28 | 5 | -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 available | Neal Norwitz | 2007-10-27 | 1 | -1/+1 |
| | |||||
* | Fix new pop() method on os.environ on ignorecase-platforms. | Georg Brandl | 2007-10-26 | 1 | -1/+1 |
| | |||||
* | 1. Add comments to provide top-level documentation. | Kurt B. Kaiser | 2007-10-26 | 1 | -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() is | Kurt B. Kaiser | 2007-10-25 | 1 | -5/+1 |
| | | | | now idempotent. | ||||
* | ffi_type_longdouble may be already #defined. | Thomas Heller | 2007-10-25 | 1 | -2/+4 |
| | | | | See issue 1324. | ||||
* | - Build using system ffi library on arm*-linux*, pass --with-system-ffi to ↵ | Matthias Klose | 2007-10-25 | 2 | -3/+3 |
| | | | | CONFIG_ARGS | ||||
* | Missing DECREFs | Raymond Hettinger | 2007-10-25 | 1 | -0/+2 |
| | |||||
* | Bug #1287: make os.environ.pop() work as expected. | Georg Brandl | 2007-10-24 | 3 | -3/+13 |
| |