| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Some more style improvements | Jeremy Hylton | 2002-06-13 | 1 | -25/+4 |
|
|
* | Python style conformance: Delete spaces between name of function and arglist. | Jeremy Hylton | 2002-06-13 | 1 | -41/+41 |
|
|
* | Whitespace nit. | Guido van Rossum | 2002-06-13 | 1 | -1/+1 |
|
|
* | Remove some overly complicated ways to concatenate and repeat strings | Guido van Rossum | 2002-06-12 | 1 | -6/+7 |
|
|
* | Don't test for Java, test for sys.getrefcount. | Guido van Rossum | 2002-06-12 | 1 | -2/+2 |
|
|
* | Some provisional changes to get more tests to run on Windows (I hope). | Guido van Rossum | 2002-06-12 | 1 | -6/+8 |
|
|
* | Argh. Typo. :-( | Guido van Rossum | 2002-06-12 | 1 | -1/+1 |
|
|
* | Allow absent fromfd(), for Windows. | Guido van Rossum | 2002-06-12 | 1 | -0/+2 |
|
|
* | testSetSockOpt() should not require the reuse flag to be 1 -- any | Guido van Rossum | 2002-06-12 | 1 | -2/+2 |
|
|
* | Lose the message on assertEqual calls -- they actually hide | Guido van Rossum | 2002-06-12 | 1 | -18/+15 |
|
|
* | Docstring, layout and style tweaking. Increase fuzz to 1 second. | Guido van Rossum | 2002-06-12 | 1 | -90/+87 |
|
|
* | Add a new definition to Extension objects: depends. | Jeremy Hylton | 2002-06-12 | 2 | -1/+6 |
|
|
* | Add some more basic tests to validate the argument checking of | Guido van Rossum | 2002-06-12 | 1 | -1/+51 |
|
|
* | New test suite for the socket module by Michael Gilfix. | Guido van Rossum | 2002-06-12 | 3 | -180/+486 |
|
|
* | Add a testcase to ensure that cycles going through the __class__ link | Guido van Rossum | 2002-06-12 | 1 | -0/+6 |
|
|
* | SF bug 567538: Generator can crash the interpreter (Finn Bock). | Guido van Rossum | 2002-06-12 | 1 | -0/+20 |
|
|
* | Rework the code to have only the GvR RPC. Output from execution of user | Kurt B. Kaiser | 2002-06-12 | 11 | -1190/+171 |
|
|
* | The opcode YIELD_STMT was accidentally called YIELD_VALUE here. | Guido van Rossum | 2002-06-11 | 1 | -1/+1 |
|
|
* | Fix SF #565414, FancyURLopener() needs to support **kwargs | Neal Norwitz | 2002-06-11 | 1 | -2/+2 |
|
|
* | Fix for problem reported by Neal Norwitz. Tighten up calculation of | Michael W. Hudson | 2002-06-11 | 1 | -0/+2 |
|
|
* | This is my nearly two year old patch | Michael W. Hudson | 2002-06-11 | 2 | -1/+73 |
|
|
* | Patch #488073: AtheOS port. | Martin v. Löwis | 2002-06-11 | 10 | -7/+1157 |
|
|
* | add a version of GvR's q&d python idle printing patch, | Steven M. Gava | 2002-06-11 | 5 | -3/+51 |
|
|
* | Took initial_tab and subsequent_tab away from the fill() method and | Greg Ward | 2002-06-10 | 1 | -22/+34 |
|
|
* | SF patch 560794 (Greg Chapman): deepcopy can't handle custom | Guido van Rossum | 2002-06-10 | 1 | -8/+15 |
|
|
* | Allow the standalone wrap() and fill() functions to take arbitrary | Greg Ward | 2002-06-10 | 1 | -4/+6 |
|
|
* | Make 'width' an instance attribute rather than an argument to the wrap() | Greg Ward | 2002-06-10 | 1 | -31/+32 |
|
|
* | SF patch 564549 (Erik Andersén). | Guido van Rossum | 2002-06-10 | 2 | -1/+12 |
|
|
* | Make all of TextWrapper's options keyword args to the constructor. | Greg Ward | 2002-06-09 | 1 | -5/+9 |
|
|
* | Record copyright and author. | Greg Ward | 2002-06-07 | 1 | -0/+4 |
|
|
* | Use True/False instead of 1/0. | Greg Ward | 2002-06-07 | 1 | -5/+5 |
|
|
* | Remove islower() -- not used anymore. | Greg Ward | 2002-06-07 | 1 | -6/+0 |
|
|
* | Conform to the bloody coding standards: "def foo()" not "def foo ()". | Greg Ward | 2002-06-07 | 1 | -10/+10 |
|
|
* | Convert _fix_sentence_endings() to use a regex, and augment it to | Greg Ward | 2002-06-07 | 1 | -8/+8 |
|
|
* | Add fix_sentence_endings option to control whether we ensure that | Greg Ward | 2002-06-07 | 1 | -16/+25 |
|
|
* | Initial revision. Currently biased towards English in a fixed-width font, | Greg Ward | 2002-06-07 | 1 | -0/+239 |
|
|
* | Added -t (--threshold) option to call gc.set_threshold(N). | Guido van Rossum | 2002-06-07 | 1 | -25/+30 |
|
|
* | gnu_getopt should be exported in __all__ | Skip Montanaro | 2002-06-07 | 1 | -1/+1 |
|
|
* | SF patch 555085 (timeout socket implementation) by Michael Gilfix. | Guido van Rossum | 2002-06-06 | 3 | -69/+267 |
|
|
* | Remove uses of string module and stat.ST_MODE | Neal Norwitz | 2002-06-06 | 3 | -11/+7 |
|
|
* | Remove another reference to stat.ST_MODE | Neal Norwitz | 2002-06-06 | 1 | -1/+1 |
|
|
* | Use isinstance for the type check, use booleans. | Martin v. Löwis | 2002-06-06 | 1 | -4/+4 |
|
|
* | Fix from SF patch 565085: copy._reduction doesn't __setstate__. | Guido van Rossum | 2002-06-06 | 1 | -0/+29 |
|
|
* | Fix from SF patch 565085: copy._reduction doesn't __setstate__. | Guido van Rossum | 2002-06-06 | 1 | -1/+4 |
|
|
* | Close SF bug 563740. complex() now finds __complex__() in new style classes. | Raymond Hettinger | 2002-06-06 | 1 | -0/+11 |
|
|
* | Change warning to debug level; it's a very minor issue. | Jeremy Hylton | 2002-06-06 | 1 | -2/+2 |
|
|
* | Patch 473512: add GNU style scanning as gnu_getopt. | Martin v. Löwis | 2002-06-06 | 2 | -2/+88 |
|
|
* | Patch #551911: Escape . properly. | Martin v. Löwis | 2002-06-06 | 1 | -1/+1 |
|
|
* | Replace obsolete stat module constants with | Walter Dörwald | 2002-06-06 | 2 | -5/+5 |
|
|
* | Skip Montanaro's patch, SF 559833, exposing xrange type in builtins. | Raymond Hettinger | 2002-06-05 | 2 | -1/+6 |
|
|