]> granicus.if.org Git - python/shortlog
python
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
2002-08-23 Tim PetersGot rid of the toy _Set class, in favor of sets.Set.
2002-08-23 Tim Peterss/_as_Temporarily_Immutable/_as_temporarily_immutable...
2002-08-23 Tim Peterspop(): An arbitrary element is removed, not a random...
2002-08-23 Fred DrakeAdjust the markup in a few places so this will actually...
2002-08-23 Fred DrakeAdd an entry for the sets module documentation.
2002-08-23 Raymond HettingerLoad docs for sets.py
2002-08-23 Guido van RossumRH pointed out that discard(element) doesn't do the...
2002-08-23 Guido van RossumThe error messages in err_args() -- which is only calle...
2002-08-23 Jack JansenAdded the standard MacOSX location for documentation...
2002-08-23 Guido van RossumRewritten using the tokenize module, which gives us...
2002-08-22 Jack JansenDon't build ConfigurePythonCarbon and ConfigurePythonCl...
2002-08-22 Jack JansenFor MacPython-OS9 verbose is the default.
2002-08-22 Jack JansenInterface to Apple Help Manager.
2002-08-22 Jack JansenMoved CoreFoundation type support to bgen/macsupport.
2002-08-22 Jack JansenAdded PyDoc_STR's.
2002-08-22 Greg WardTweak wordsep_re again: this time to recognize an em...
2002-08-22 Greg WardTest an em-dash with adjacent punctuation.
2002-08-22 Greg WardFactored out BaseTestCase.check_split() method -- use...
2002-08-22 Greg WardTest _split() method in test_unix_options().
2002-08-22 Greg WardAdd test_unix_options() to WrapTestCase to test for...
2002-08-22 Greg WardFix SF bug #596434: tweak wordsep_re so "--foo-bar...
2002-08-22 Guido van RossumStandardize behavior: no docstrings in test functions.
2002-08-22 Guido van RossumStandardize behavior: no docstrings in test functions...
2002-08-22 Guido van RossumStandardize behavior: no docstrings in test functions...
2002-08-22 Guido van RossumDocument that docstrings are verboten for test functions.
2002-08-22 Guido van RossumStandardize behavior: no docstrings in test functions...
2002-08-22 Guido van RossumStandardize behavior: no docstrings in test functions...
2002-08-22 Greg WardAdd test_em_dash() to WrapTestCase to make sure that...
2002-08-22 Guido van RossumStandardize behavior: no docstrings in test functions.
2002-08-22 Guido van RossumStandardize behavior: create a single suite merging...
2002-08-22 Guido van RossumStandardize behavior: no docstrings in test functions...
2002-08-22 Guido van RossumMade it more readable.
2002-08-22 Greg WardFix peculiar (and ungrammatical) wording in an example...
2002-08-22 Greg WardSimplification/cleanup in IndentTestCases.
2002-08-22 Greg WardFactor LongWordTestCase out of WrapTestCase, and rename...
2002-08-22 Greg WardRename base test case class to (yawn) BaseTestCase.
2002-08-22 Greg WardDitch the whole loop-over-subcases way of working....
2002-08-22 Greg WardSimplify and reformat the use of 'subcases' lists ...
2002-08-22 Greg WardAdd comment header block.
2002-08-22 Greg WardConform to standards documented in README:
2002-08-22 Greg WardTest script for the textwrap module. Kindly provided...
2002-08-22 Guido van RossumOn Windows, make sure SocketType is the same as socket...
2002-08-22 Guido van RossumChange the binary operators |, &, ^, - to return NotImp...
2002-08-22 Fred DrakeGive the section on PEP 263 a more meaningful title...
2002-08-22 Fred DrakeAdd a note that apply() is needed since the extended...
2002-08-22 Michael W.... Fix grammatically inept comment.
2002-08-21 Fred DrakeAdded a main() function and support to run this module...
2002-08-21 Fred DrakeRefactor: Remove some code that was obsoleted when...
2002-08-21 Fred DrakeClarify that even though some of the relevant specifica...
2002-08-21 Raymond HettingerNow that __init__ transforms set elements, we know...
2002-08-21 Raymond HettingerAdd regression test for proper construction of sets...
2002-08-21 Raymond HettingerReplace all cases of "while 1" with "while True".
2002-08-21 Raymond HettingerSped ._update() method by factoring try/except out...
2002-08-21 Guido van RossumOuch. The test suite *really* needs work!!!!! There...
2002-08-21 Guido van RossumAdd Raymond H to the list of authors; add some XXX...
2002-08-21 Raymond HettingerFast size check for sub/super set tests
2002-08-21 Raymond HettingerOptimize try/except ordering in sets.py.
2002-08-20 Raymond HettingerMinor typo
2002-08-20 Guido van RossumRename popitem() to pop(). (An idea from SF patch...
2002-08-20 Guido van RossumMove __init__ from BaseSet into Set and ImmutableSet...
2002-08-20 Guido van RossumTypo repair. Please include in any backports.
2002-08-20 Guido van RossumAdd a note reminding the reader that sets are not seque...
2002-08-20 Guido van RossumSF patch 595846 by Brett Cannon: Update environ for...
2002-08-20 Tim Peterslong_format(), long_lshift(): Someone on c.l.py is...
2002-08-20 Guido van RossumFix some endcase bugs in unicode rfind()/rindex() and...
2002-08-20 Michael W.... Comment typo repair.
2002-08-20 Michael W.... My patch #597221. Use f_lasti more consistently.
2002-08-20 Barry WarsawBump version number to 2.3
2002-08-20 Barry WarsawAdded tests for SF patch #597593, syntactically invalid...
2002-08-20 Barry Warsawget_content_type(), get_content_maintype(), get_content...
2002-08-20 Barry Warsaw_dispatch(): Use get_content_maintype() and get_content...
2002-08-20 Tim Petersgetinstclassname(): Squash new compiler wng in assert...
next