| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Polish RemoteDebugger code. | Kurt B. Kaiser | 2002-06-16 | 6 | -46/+69 |
|
|
* | Forgot to add this. It's part of patch 568629. | Guido van Rossum | 2002-06-16 | 1 | -0/+17 |
|
|
* | test_module_with_large_stack(): This failed when Python was run with -O, | Tim Peters | 2002-06-15 | 1 | -2/+5 |
|
|
* | test_module_with_large_stack(): This failed on Windows, for the wrong | Tim Peters | 2002-06-15 | 1 | -1/+1 |
|
|
* | SF patch 568629 by Oren Tirosh: types made callable. | Guido van Rossum | 2002-06-14 | 1 | -2/+6 |
|
|
* | Use code.interact(), which is even simpler, *and* imports readline | Guido van Rossum | 2002-06-14 | 1 | -3/+3 |
|
|
* | Don't poorly emulate the interactive interpreter, use | Guido van Rossum | 2002-06-14 | 1 | -19/+9 |
|
|
* | Test for the bug in recurse_down_subclasses() that I just fixed. | Guido van Rossum | 2002-06-14 | 1 | -0/+10 |
|
|
* | Fix SF bug # 561858 Assertion with very long lists | Neal Norwitz | 2002-06-14 | 1 | -0/+31 |
|
|
* | SF bug # 493951 string.{starts,ends}with vs slices | Neal Norwitz | 2002-06-14 | 1 | -0/+27 |
|
|
* | Test exceptional condition in select() | Neal Norwitz | 2002-06-13 | 1 | -0/+7 |
|
|
* | Test exceptional conditions in list.sort() | Neal Norwitz | 2002-06-13 | 1 | -0/+15 |
|
|
* | Cleanup a little | Neal Norwitz | 2002-06-13 | 1 | -6/+7 |
|
|
* | Fix for SF bug 532646. This is a little simpler than what Neal | Guido van Rossum | 2002-06-13 | 1 | -0/+14 |
|
|
* | Temporarily disable the timeout and socket tests. | Guido van Rossum | 2002-06-13 | 2 | -14/+14 |
|
|
* | Hopefully this addresses the remaining issues of SF bugs 459235 and | Guido van Rossum | 2002-06-13 | 1 | -0/+46 |
|
|
* | The opcode FOR_LOOP no longer exists. | Guido van Rossum | 2002-06-13 | 1 | -1/+0 |
|
|
* | Extend dependency tracking so that .o files are rebuilt. | Jeremy Hylton | 2002-06-13 | 1 | -4/+2 |
|
|
* | Refactor compile() method implementations. | Jeremy Hylton | 2002-06-13 | 5 | -272/+178 |
|
|
* | Add depends=None to the arglist for compile(). | Jeremy Hylton | 2002-06-13 | 1 | -1/+2 |
|
|
* | Extend compiler() method with optional depends argument. | Jeremy Hylton | 2002-06-13 | 1 | -74/+168 |
|
|
* | Comment out testHostnameRes() -- it depends on a correctly working | Guido van Rossum | 2002-06-13 | 1 | -10/+10 |
|
|
* | Fix non-blocking connect() for Windows. Refactored the code | Guido van Rossum | 2002-06-13 | 1 | -12/+2 |
|
|
* | More style changes and little cleanups. | Jeremy Hylton | 2002-06-13 | 1 | -63/+33 |
|
|
* | Major overhaul of timeout sockets: | Guido van Rossum | 2002-06-13 | 2 | -4/+7 |
|
|
* | Fix a typo. | Guido van Rossum | 2002-06-13 | 1 | -1/+2 |
|
|
* | 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 |
|
|