- 23 Aug, 2005 10 commits
-
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
(Contributed by Michael R Bax.)
-
Andrew M. Kuchling authored
In an e-mail to the webmaster alias, some suggested adding this text. Windows users, please correct/expand as necessary.
-
Fred Drake authored
SF patch #1057588; other changes make the rest of the patch out of date or otherwise unnecessary
-
Fred Drake authored
(closes SF bug #736659, patch #901369)
-
Kurt B. Kaiser authored
-
Kurt B. Kaiser authored
when using X11 and the Fink distribution. Python Bug 1263656. 2. Eliminate duplicated code in ScriptBinding.run_module_event() Modified Files: NEWS.txt ScriptBinding.py
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
- 22 Aug, 2005 3 commits
-
-
Georg Brandl authored
-
Gregory P. Smith authored
-
Georg Brandl authored
-
- 21 Aug, 2005 9 commits
-
-
Gregory P. Smith authored
A new hashlib module to replace the md5 and sha modules. It adds support for additional secure hashes such as SHA-256 and SHA-512. The hashlib module uses OpenSSL for fast platform optimized implementations of algorithms when available. The old md5 and sha modules still exist as wrappers around hashlib to preserve backwards compatibility.
-
Georg Brandl authored
-
Raymond Hettinger authored
(Contributed by Michael R Bax.)
-
Georg Brandl authored
-
Raymond Hettinger authored
sequences ==> iterables
-
Raymond Hettinger authored
Minor clarification.
-
Raymond Hettinger authored
Fix over-aggressive PyErr_Clear(). The same code fragment appears in various guises in list.extend(), map(), filter(), zip(), and internally in PySequence_Tuple().
-
Georg Brandl authored
-
Raymond Hettinger authored
-
- 20 Aug, 2005 1 commit
-
-
Raymond Hettinger authored
-
- 19 Aug, 2005 1 commit
-
-
Raymond Hettinger authored
-
- 18 Aug, 2005 3 commits
-
-
Andrew M. Kuchling authored
-
Raymond Hettinger authored
-
Walter Dörwald authored
-
- 17 Aug, 2005 5 commits
-
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
* set_merge() cannot assume that the table doesn't resize during iteration. * convert some unnecessary tests to asserts -- they were necessary in dictobject.c because PyDict_Next() is a public function. The same is not true for set_next(). * re-arrange the order of functions to more closely match the order in dictobject.c. This makes it must easier to compare the two and ought to simplify any issues of maintaining both.
-
- 16 Aug, 2005 3 commits
-
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
- 15 Aug, 2005 1 commit
-
-
Barry Warsaw authored
hotshot.stats.load.
-
- 14 Aug, 2005 1 commit
-
-
Martin v. Löwis authored
-
- 13 Aug, 2005 3 commits
-
-
Raymond Hettinger authored
-
Raymond Hettinger authored
* Use set_next() for looping in issubset() and frozenset_hash(). * Re-order the presentation of cmp and hash functions.
-
Phillip J. Eby authored
was never called during interpreter shutdown GC, so the f_back!=NULL assertion was correct. Now that generators get close()d during GC, the assertion was being triggered because the generator close() was being called as the top-level frame. However, nothing actually is broken by this; it's just that the condition was unexpected in previous Python versions.
-