2002-08-29 |
Raymond Hettinger | complex() was the only numeric constructor that created... |
commit | commitdiff | tree | snapshot |
2002-08-29 |
Barry Warsaw | Fixed three exceptions in the Plain integers test,... |
commit | commitdiff | tree | snapshot |
2002-08-29 |
Barry Warsaw | The test_tokenize output has changed slightly, by the... |
commit | commitdiff | tree | snapshot |
2002-08-28 |
Jack Jansen | Distutils-based script by Bill Fancher to download... |
commit | commitdiff | tree | snapshot |
2002-08-28 |
Jack Jansen | - Install a symlink to the documentation (which lives... |
commit | commitdiff | tree | snapshot |
2002-08-28 |
Jack Jansen | Distutils-based script by Bill Fancher to download... |
commit | commitdiff | tree | snapshot |
2002-08-28 |
Jack Jansen | This file never made it to the repository, somehow. |
commit | commitdiff | tree | snapshot |
2002-08-28 |
Jack Jansen | These were regenerated some time ago (with ascii chars... |
commit | commitdiff | tree | snapshot |
2002-08-28 |
Jack Jansen | Interface to Apple Help Viewer. |
commit | commitdiff | tree | snapshot |
2002-08-28 |
Barry Warsaw | Quite down some FutureWarnings. |
commit | commitdiff | tree | snapshot |
2002-08-28 |
Skip Montanaro | add warning about exception messages |
commit | commitdiff | tree | snapshot |
2002-08-27 |
Raymond Hettinger | Note change in behavior from 1.5.2. The new argument... |
commit | commitdiff | tree | snapshot |
2002-08-27 |
Barry Warsaw | Whitespace normalization. |
commit | commitdiff | tree | snapshot |
2002-08-27 |
Barry Warsaw | Typo |
commit | commitdiff | tree | snapshot |
2002-08-27 |
Peter Schneider... | execfile should call PyErr_SetFromErrnoWithFilename... |
commit | commitdiff | tree | snapshot |
2002-08-27 |
Fred Drake | Add strong security warning about the rexec module. |
commit | commitdiff | tree | snapshot |
2002-08-27 |
Fred Drake | Don't use tempfile.mktemp(), since it produces annoying... |
commit | commitdiff | tree | snapshot |
2002-08-26 |
Fred Drake | Fix a couple of whitespace consistency nits. |
commit | commitdiff | tree | snapshot |
2002-08-26 |
Fred Drake | Simplify, and avoid PyModule_GetDict() while we're... |
commit | commitdiff | tree | snapshot |
2002-08-26 |
Barry Warsaw | Fix an inaccuracy in the comment |
commit | commitdiff | tree | snapshot |
2002-08-26 |
Tim Peters | Gave intersection_update a speed boost. |
commit | commitdiff | tree | snapshot |
2002-08-25 |
Tim Peters | Gave issubet() and issuperset() major speed boosts... |
commit | commitdiff | tree | snapshot |
2002-08-25 |
Tim Peters | Gave __sub__/difference a factor of 2-5 speed boost. |
commit | commitdiff | tree | snapshot |
2002-08-25 |
Tim Peters | Gave __xor__/symmetric_difference a factor of 2-5 speed... |
commit | commitdiff | tree | snapshot |
2002-08-25 |
Tim Peters | Sped union by a factor of 3-4. |
commit | commitdiff | tree | snapshot |
2002-08-25 |
Tim Peters | Sped intersection by large factors (3-5x faster than... |
commit | commitdiff | tree | snapshot |
2002-08-25 |
Tim Peters | Added a clue about why xyz_update isn't the same as... |
commit | commitdiff | tree | snapshot |
2002-08-25 |
Tim Peters | Implemented <, <=, >, >= for sets, giving subset and... |
commit | commitdiff | tree | snapshot |
2002-08-25 |
Tim Peters | TestSubset(): Generalized the framework to support... |
commit | commitdiff | tree | snapshot |
2002-08-25 |
Tim Peters | Rewrote all remaining assert stmts. |
commit | commitdiff | tree | snapshot |
2002-08-25 |
Tim Peters | Simplified construction of the test suite. |
commit | commitdiff | tree | snapshot |
2002-08-25 |
Tim Peters | Simplified code building sets of characters. |
commit | commitdiff | tree | snapshot |
2002-08-25 |
Tim Peters | Ack! Virtually every test here relied on an assert... |
commit | commitdiff | tree | snapshot |
2002-08-25 |
Tim Peters | Simplified the setup for is-subset testing. |
commit | commitdiff | tree | snapshot |
2002-08-25 |
Tim Peters | Record a clue about why __or__ is not union, etc. |
commit | commitdiff | tree | snapshot |
2002-08-25 |
Raymond Hettinger | Replace 0 with False to match working in documentation... |
commit | commitdiff | tree | snapshot |
2002-08-25 |
Raymond Hettinger | Correct documentation of allow_reuse_address to match... |
commit | commitdiff | tree | snapshot |
2002-08-25 |
Kurt B. Kaiser | 1. Revert subprocess environment clearing, will restart... |
commit | commitdiff | tree | snapshot |
2002-08-24 |
Kurt B. Kaiser | Improve exception handling across rpc interface |
commit | commitdiff | tree | snapshot |
2002-08-24 |
Raymond Hettinger | Removed < <= > >= from the API. Implemented as compari... |
commit | commitdiff | tree | snapshot |
2002-08-24 |
Guido van Rossum | string_contains(): speed up by avoiding function calls... |
commit | commitdiff | tree | snapshot |
2002-08-24 |
Guido van Rossum | Speed up the most egregious "if token in (long tuple... |
commit | commitdiff | tree | snapshot |
2002-08-24 |
Guido van Rossum | Speedup for PyObject_IsTrue(): check for True and False... |
commit | commitdiff | tree | snapshot |
2002-08-24 |
Raymond Hettinger | At Tim Peter's suggestion, propagated GvR's binary... |
commit | commitdiff | tree | snapshot |
2002-08-24 |
Guido van Rossum | Speedup for PyObject_RichCompareBool(): PyObject_RichCo... |
commit | commitdiff | tree | snapshot |
2002-08-24 |
Raymond Hettinger | Since instances of _TemporarilyImmutableSet are always... |
commit | commitdiff | tree | snapshot |
2002-08-24 |
Raymond Hettinger | Expanded tests for sets of sets. |
commit | commitdiff | tree | snapshot |
2002-08-24 |
Raymond Hettinger | 1. Removed module self test in favor of unittests ... |
commit | commitdiff | tree | snapshot |
2002-08-23 |
Fred Drake | Fix typo reported to python-docs. |
commit | commitdiff | tree | snapshot |
2002-08-23 |
Tim Peters | pop() docstring: this isn't a randomly-chosen element... |
commit | commitdiff | tree | snapshot |
2002-08-23 |
Tim Peters | Comment repair. |
commit | commitdiff | tree | snapshot |
2002-08-23 |
Guido van Rossum | Fix SF bug 599128, submitted by Inyeol Lee: .replace... |
commit | commitdiff | tree | snapshot |
2002-08-23 |
Guido van Rossum | Code by Inyeol Lee, submitted to SF bug 595350, to... |
commit | commitdiff | tree | snapshot |
2002-08-23 |
Tim Peters | Whitespace normalization. |
commit | commitdiff | tree | snapshot |
2002-08-23 |
Raymond Hettinger | Fix markup and punctuation |
commit | commitdiff | tree | snapshot |
2002-08-23 |
Tim Peters | Got rid of the toy _Set class, in favor of sets.Set. |
commit | commitdiff | tree | snapshot |
2002-08-23 |
Tim Peters | s/_as_Temporarily_Immutable/_as_temporarily_immutable... |
commit | commitdiff | tree | snapshot |
2002-08-23 |
Tim Peters | pop(): An arbitrary element is removed, not a random... |
commit | commitdiff | tree | snapshot |
2002-08-23 |
Fred Drake | Adjust the markup in a few places so this will actually... |
commit | commitdiff | tree | snapshot |
2002-08-23 |
Fred Drake | Add an entry for the sets module documentation. |
commit | commitdiff | tree | snapshot |
2002-08-23 |
Raymond Hettinger | Load docs for sets.py |
commit | commitdiff | tree | snapshot |
2002-08-23 |
Guido van Rossum | RH pointed out that discard(element) doesn't do the... |
commit | commitdiff | tree | snapshot |
2002-08-23 |
Guido van Rossum | The error messages in err_args() -- which is only calle... |
commit | commitdiff | tree | snapshot |
2002-08-23 |
Jack Jansen | Added the standard MacOSX location for documentation... |
commit | commitdiff | tree | snapshot |
2002-08-23 |
Guido van Rossum | Rewritten using the tokenize module, which gives us... |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Jack Jansen | Don't build ConfigurePythonCarbon and ConfigurePythonCl... |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Jack Jansen | For MacPython-OS9 verbose is the default. |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Jack Jansen | Interface to Apple Help Manager. |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Jack Jansen | Moved CoreFoundation type support to bgen/macsupport. |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Jack Jansen | Added PyDoc_STR's. |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Greg Ward | Tweak wordsep_re again: this time to recognize an em... |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Greg Ward | Test an em-dash with adjacent punctuation. |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Greg Ward | Factored out BaseTestCase.check_split() method -- use... |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Greg Ward | Test _split() method in test_unix_options(). |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Greg Ward | Add test_unix_options() to WrapTestCase to test for... |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Greg Ward | Fix SF bug #596434: tweak wordsep_re so "--foo-bar... |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Guido van Rossum | Standardize behavior: no docstrings in test functions. |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Guido van Rossum | Standardize behavior: no docstrings in test functions... |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Guido van Rossum | Standardize behavior: no docstrings in test functions... |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Guido van Rossum | Document that docstrings are verboten for test functions. |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Guido van Rossum | Standardize behavior: no docstrings in test functions... |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Guido van Rossum | Standardize behavior: no docstrings in test functions... |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Greg Ward | Add test_em_dash() to WrapTestCase to make sure that... |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Guido van Rossum | Standardize behavior: no docstrings in test functions. |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Guido van Rossum | Standardize behavior: create a single suite merging... |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Guido van Rossum | Standardize behavior: no docstrings in test functions... |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Guido van Rossum | Made it more readable. |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Greg Ward | Fix peculiar (and ungrammatical) wording in an example... |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Greg Ward | Simplification/cleanup in IndentTestCases. |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Greg Ward | Factor LongWordTestCase out of WrapTestCase, and rename... |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Greg Ward | Rename base test case class to (yawn) BaseTestCase. |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Greg Ward | Ditch the whole loop-over-subcases way of working.... |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Greg Ward | Simplify and reformat the use of 'subcases' lists ... |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Greg Ward | Add comment header block. |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Greg Ward | Conform to standards documented in README: |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Greg Ward | Test script for the textwrap module. Kindly provided... |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Guido van Rossum | On Windows, make sure SocketType is the same as socket... |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Guido van Rossum | Change the binary operators |, &, ^, - to return NotImp... |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Fred Drake | Give the section on PEP 263 a more meaningful title... |
commit | commitdiff | tree | snapshot |
2002-08-22 |
Fred Drake | Add a note that apply() is needed since the extended... |
commit | commitdiff | tree | snapshot |
next |