]> granicus.if.org Git - python/shortlog
python
2002-09-03 Skip Montanaromissed this one on the previous multi-file checkin...
2002-09-03 Guido van RossumAdd a custom __str__ method to KeyError that applies...
2002-09-03 Skip MontanaroBump default check interval to 100 instructions. Compu...
2002-09-03 Skip Montanaroreplace thread state objects' ticker and checkinterval...
2002-09-03 Jeremy HyltonSF bug [ 600488 ] Robustness tweak to httplib.py
2002-09-03 Guido van RossumtestConnectTimeout(): set the timeout to a smaller...
2002-09-03 Guido van RossumUpdate the module doc comment.
2002-09-03 Guido van Rossum(Most of) SF patch 601369 (Christos Georgiou): obmalloc...
2002-09-03 Guido van RossumFix for SF bug 601077 by Zack Weinberg.
2002-09-03 Tim PetersRemoved reliance on gcc/C99 extension.
2002-09-03 Walter DörwaldCheck whether a string resize is necessary at the end
2002-09-03 Skip Montanaroexpose PYTHON_API_VERSION macro as sys.api_version...
2002-09-03 Martin v. LöwisIgnore encoding declarations inside strings. Fixes...
2002-09-03 Andrew M. KuchlingAdd reminder about PEP293
2002-09-02 Kurt B. Kaiser(Re)Apply Sourceforge Python patch 520483, Sourceforge...
2002-09-02 Walter DörwaldCheck string for NULL before using it to format the...
2002-09-02 Walter DörwaldRemoved bogus PyUnicodeTranslateError_GetEncoding, as
2002-09-02 Walter DörwaldLimit the length of attribute names in exception messages
2002-09-02 Fred DrakeMinor change for symmetry with PyXML: PyDoc_STR should...
2002-09-02 Walter DörwaldPEP 293 implemention (from SF patch http://www.python...
2002-09-02 Jack JansenGenerate pythonw.sh on the fly.
2002-09-02 Jack JansenPass -x badsyntax to compileall.
2002-09-01 Barry Warsaw_structure(): Use .get_content_type()
2002-09-01 Guido van RossumSF bug 601775 - some int results that should be bool.
2002-08-31 Raymond HettingerAdded comparison functions to dict proxies.
2002-08-31 Guido van RossumBecause MWH changed the bytecode again, moved the magic...
2002-08-31 Jack JansenImplemented the Help menu. The Python manual can be...
2002-08-31 Jack JansenIf there's an environment variable PYTHONIDEPATH it...
2002-08-31 Jack JansenMenuID's are signed.
2002-08-30 Jack JansenTypecode for AHTOCType was wrong. Fixed.
2002-08-30 Jack JansenInitialize self._helpmenu earlier, so we can use gethel...
2002-08-30 Jack JansenFix for Jaguar: use ln for installing symlinks, install...
2002-08-30 Michael W.... Further SET_LINENO reomval fixes. See comments in...
2002-08-30 Jack JansenOn Jaguar the default mode for files in the installed...
2002-08-29 Jack JansenAdded support for the help menu. Application.gethelpmen...
2002-08-29 Jack JansenRevived the Carbon.Help module, but implementing the...
2002-08-29 Neal NorwitzSF #561244: micro optimizations, builtins cannot be...
2002-08-29 Jack JansenDon't copy the documentation when using Python.app...
2002-08-29 Barry WarsawMany hopefully benign style clean ups. Still passes...
2002-08-29 Barry Warsawstrptime(): The code that was adding 12 to PM hours...
2002-08-29 Barry WarsawThe test I saw failing this morning just happened to...
2002-08-29 Raymond HettingerSped _update().
2002-08-29 Guido van RossumUndo Barry's change. This file is not imported, it...
2002-08-29 Guido van RossumSuppress warnings when byte-compiling the installed...
2002-08-29 Guido van RossumRestore the hex/oct constant tests that Barry commented...
2002-08-29 Raymond Hettingercomplex() was the only numeric constructor that created...
2002-08-29 Barry WarsawFixed three exceptions in the Plain integers test,...
2002-08-29 Barry WarsawThe test_tokenize output has changed slightly, by the...
2002-08-28 Jack JansenDistutils-based script by Bill Fancher to download...
2002-08-28 Jack Jansen- Install a symlink to the documentation (which lives...
2002-08-28 Jack JansenDistutils-based script by Bill Fancher to download...
2002-08-28 Jack JansenThis file never made it to the repository, somehow.
2002-08-28 Jack JansenThese were regenerated some time ago (with ascii chars...
2002-08-28 Jack JansenInterface to Apple Help Viewer.
2002-08-28 Barry WarsawQuite down some FutureWarnings.
2002-08-28 Skip Montanaroadd warning about exception messages
2002-08-27 Raymond HettingerNote change in behavior from 1.5.2. The new argument...
2002-08-27 Barry WarsawWhitespace normalization.
2002-08-27 Barry WarsawTypo
2002-08-27 Peter Schneider... execfile should call PyErr_SetFromErrnoWithFilename...
2002-08-27 Fred DrakeAdd strong security warning about the rexec module.
2002-08-27 Fred DrakeDon't use tempfile.mktemp(), since it produces annoying...
2002-08-26 Fred DrakeFix a couple of whitespace consistency nits.
2002-08-26 Fred DrakeSimplify, and avoid PyModule_GetDict() while we're...
2002-08-26 Barry WarsawFix an inaccuracy in the comment
2002-08-26 Tim PetersGave intersection_update a speed boost.
2002-08-25 Tim PetersGave issubet() and issuperset() major speed boosts...
2002-08-25 Tim PetersGave __sub__/difference a factor of 2-5 speed boost.
2002-08-25 Tim PetersGave __xor__/symmetric_difference a factor of 2-5 speed...
2002-08-25 Tim PetersSped union by a factor of 3-4.
2002-08-25 Tim PetersSped intersection by large factors (3-5x faster than...
2002-08-25 Tim PetersAdded a clue about why xyz_update isn't the same as...
2002-08-25 Tim PetersImplemented <, <=, >, >= for sets, giving subset and...
2002-08-25 Tim PetersTestSubset(): Generalized the framework to support...
2002-08-25 Tim PetersRewrote all remaining assert stmts.
2002-08-25 Tim PetersSimplified construction of the test suite.
2002-08-25 Tim PetersSimplified code building sets of characters.
2002-08-25 Tim PetersAck! Virtually every test here relied on an assert...
2002-08-25 Tim PetersSimplified the setup for is-subset testing.
2002-08-25 Tim PetersRecord a clue about why __or__ is not union, etc.
2002-08-25 Raymond HettingerReplace 0 with False to match working in documentation...
2002-08-25 Raymond HettingerCorrect documentation of allow_reuse_address to match...
2002-08-25 Kurt B. Kaiser1. Revert subprocess environment clearing, will restart...
2002-08-24 Kurt B. KaiserImprove exception handling across rpc interface
2002-08-24 Raymond HettingerRemoved < <= > >= from the API. Implemented as compari...
2002-08-24 Guido van Rossumstring_contains(): speed up by avoiding function calls...
2002-08-24 Guido van RossumSpeed up the most egregious "if token in (long tuple...
2002-08-24 Guido van RossumSpeedup for PyObject_IsTrue(): check for True and False...
2002-08-24 Raymond HettingerAt Tim Peter's suggestion, propagated GvR's binary...
2002-08-24 Guido van RossumSpeedup for PyObject_RichCompareBool(): PyObject_RichCo...
2002-08-24 Raymond HettingerSince instances of _TemporarilyImmutableSet are always...
2002-08-24 Raymond HettingerExpanded tests for sets of sets.
2002-08-24 Raymond Hettinger1. Removed module self test in favor of unittests ...
2002-08-23 Fred DrakeFix typo reported to python-docs.
2002-08-23 Tim Peterspop() docstring: this isn't a randomly-chosen element...
2002-08-23 Tim PetersComment repair.
2002-08-23 Guido van RossumFix SF bug 599128, submitted by Inyeol Lee: .replace...
2002-08-23 Guido van RossumCode by Inyeol Lee, submitted to SF bug 595350, to...
2002-08-23 Tim PetersWhitespace normalization.
2002-08-23 Raymond HettingerFix markup and punctuation
next