Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | py-cvs-rel2_1 merge - Remove, lives in /Lib | Kurt B. Kaiser | 2001-07-13 | 1 | -382/+0 |
| | |||||
* | py-cvs-rel2_1 (Rev 1.3) merge - whitespace normalization | Kurt B. Kaiser | 2001-07-13 | 1 | -1/+0 |
| | |||||
* | py-cvs-rel2_1 (Rev 1.15) merge - whitespace normalization | Kurt B. Kaiser | 2001-07-13 | 1 | -4/+4 |
| | |||||
* | py-cvs-rel2_1 (Rev 1.11 and 1.12) merge | Kurt B. Kaiser | 2001-07-13 | 1 | -15/+28 |
| | | | | Colorize "as" after "import" / use DEBUG instead of __debug__ | ||||
* | py-cvs-rel2_1 (Rev 1.12) merge - whitespace normalization | Kurt B. Kaiser | 2001-07-12 | 1 | -1/+1 |
| | |||||
* | py-cvs-rel2_1 (Rev 1.1) merge - New File - Force HEAD to trunk with -f | Kurt B. Kaiser | 2001-07-12 | 0 | -0/+0 |
| | | | | | | Note: browser.py was renamed BrowserControl.py 10 May 2000. It provides a collection of classes and convenience functions to control external browsers "for 1.5.2 support". It was removed from py-cvs 18 April 2001. | ||||
* | Add entry for xmlrpclib documentation. | Fred Drake | 2001-07-12 | 2 | -0/+2 |
| | |||||
* | Several markup adjustments so this will format and be more consistent with | Fred Drake | 2001-07-12 | 1 | -35/+45 |
| | | | | the rest of the documnentation. | ||||
* | py-cvs-rel2_1 (Rev 1.8) merge - whitespace normalization | Kurt B. Kaiser | 2001-07-12 | 1 | -3/+3 |
| | |||||
* | Remove the last remnants of the hacks to worm around leaks. | Tim Peters | 2001-07-12 | 1 | -12/+3 |
| | |||||
* | Repair flawed example. | Tim Peters | 2001-07-12 | 1 | -1/+1 |
| | |||||
* | Remove now-unnecessary "from __future__ import nested_scopes" stmts. | Tim Peters | 2001-07-12 | 5 | -14/+7 |
| | |||||
* | py-cvs-rel2_1 (Rev 1.3) merge - whitespace normalization | Kurt B. Kaiser | 2001-07-12 | 1 | -2/+2 |
| | |||||
* | py-cvs-rel1_2 (Rev 1.4) merge, | Kurt B. Kaiser | 2001-07-12 | 1 | -2/+1 |
| | | | | | "Add Alt-slash to Unix keydefs (I somehow need it on RH 6.2). Get rid of assignment to unused self.text.wordlist." --GvR | ||||
* | Generate a more meaningful message regarding the type of the documentation | Fred Drake | 2001-07-12 | 1 | -1/+1 |
| | | | | release being discussed. | ||||
* | Fixed another case of the PyArg_Parse 'h' semantic change problem, sigh... | Jack Jansen | 2001-07-12 | 1 | -1/+1 |
| | |||||
* | Actually remove directories from sys.path if they do not exist; the intent | Fred Drake | 2001-07-12 | 1 | -0/+4 |
| | | | | is to avoid as many stat() calls as we can. | ||||
* | Fiddle Windows installer to create Lib/site-packages/REAMDE as | Tim Peters | 2001-07-12 | 1 | -0/+6 |
| | | | | Lib\site-packages\README.txt. | ||||
* | Fix return value for m.group() for groups not in the part of the RE that | Fred Drake | 2001-07-12 | 1 | -42/+47 |
| | | | | | | matched; reported by Paul Moore. Wrapped several long lines. | ||||
* | GC for generator objects. | Neil Schemenauer | 2001-07-12 | 1 | -4/+12 |
| | |||||
* | GC for method objects. | Neil Schemenauer | 2001-07-12 | 1 | -11/+31 |
| | |||||
* | GC for iterator objects. | Neil Schemenauer | 2001-07-12 | 1 | -6/+29 |
| | |||||
* | GC for frame objects. | Neil Schemenauer | 2001-07-12 | 1 | -12/+101 |
| | |||||
* | Remove reference cycle breaking code. The GC now takes care of it. | Neil Schemenauer | 2001-07-12 | 1 | -7/+1 |
| | |||||
* | Test GC of frame objects. | Neil Schemenauer | 2001-07-12 | 1 | -0/+11 |
| | |||||
* | Make the test pass now that 10**-15 returns a float instead of raising | Guido van Rossum | 2001-07-12 | 1 | -3/+1 |
| | | | | an exception. | ||||
* | Enable nested scopes by default. | Guido van Rossum | 2001-07-12 | 1 | -1/+1 |
| | | | | | | | | | | | Although this is a one-character change, more work needs to be done: the compiler can get rid of a lot of non-nested-scopes code, the documentation needs to be updated, the future statement can be simplified, etc. But this change enables the nested scope semantics everywhere, and that's the important part -- we can now test code for compatibility with nested scopes by default. | ||||
* | Add xmlrpc. | Guido van Rossum | 2001-07-12 | 1 | -0/+5 |
| | | | | | | | (Tim & I should agree on where to add new additions: I add them at the top, Tim adds them at the bottom. I like the top better because folks who occasionally check out the NEWS file will see the latest news first.) | ||||
* | On int/long to the negative int/long power, let float handle it | Guido van Rossum | 2001-07-12 | 1 | -7/+10 |
| | | | | | | | instead of raising an error. This was one of the two issues that the VPython folks were particularly problematic for their students. (The other one was integer division...) This implements (my) SF patch #440487. | ||||
* | On long to the negative long power, let float handle it instead of | Guido van Rossum | 2001-07-12 | 1 | -8/+7 |
| | | | | | | raising an error. This was one of the two issues that the VPython folks were particularly problematic for their students. (The other one was integer division...) This implements (my) SF patch #440487. | ||||
* | On int to the negative integral power, let float handle it instead of | Guido van Rossum | 2001-07-12 | 1 | -7/+5 |
| | | | | | | raising an error. This was one of the two issues that the VPython folks were particularly problematic for their students. (The other one was integer division...) This implements (my) SF patch #440487. | ||||
* | py-cvs merge, python 1.5.2 compatability | Steven M. Gava | 2001-07-12 | 1 | -2/+18 |
| | |||||
* | py-cvs merge, better error dialog | Steven M. Gava | 2001-07-12 | 1 | -3/+7 |
| | |||||
* | py-cvs merge, additions | Steven M. Gava | 2001-07-12 | 1 | -0/+6 |
| | |||||
* | py-cvs merge, correct indentation | Steven M. Gava | 2001-07-12 | 1 | -1/+1 |
| | |||||
* | py-cvs merge, correct typo | Steven M. Gava | 2001-07-12 | 1 | -2/+2 |
| | |||||
* | py-cvs merge, update colour changing info | Steven M. Gava | 2001-07-12 | 1 | -1/+2 |
| | |||||
* | PEP 250: Add lib/site-packages to sys.path on Windows; also sys.prefix | Tim Peters | 2001-07-12 | 1 | -3/+1 |
| | | | | to sys.path if os.sep == ':' (Macs?). See PEP 250. | ||||
* | py-cvs merge, idle_dir loading changed | Steven M. Gava | 2001-07-12 | 1 | -1/+1 |
| | |||||
* | py-cvs merge, version update | Steven M. Gava | 2001-07-12 | 1 | -1/+1 |
| | |||||
* | First version of xmlrpclib docs. Probably has markup errors; is not complete, | Eric S. Raymond | 2001-07-12 | 1 | -0/+237 |
| | | | | | | | | could probably stand to have some of the internal things like Marshaller documented. But I think it does a decent job on the entry points and externally visible things. Fred and Fredrik, do your stuff! You both need to proof this. | ||||
* | Follow the recommended practices for keystroke representation; this | Fred Drake | 2001-07-12 | 3 | -23/+25 |
| | | | | improves internal consistency in the documentation. | ||||
* | For \kbd, be more prescriptive regarding how keystrokes should be | Fred Drake | 2001-07-12 | 1 | -2/+7 |
| | | | | written. | ||||
* | Re-do the broken-nice() patch to break less platforms. Hopefully none :P | Thomas Wouters | 2001-07-11 | 5 | -9/+86 |
| | | | | | | | Also note that it isn't just Linux nice() that is broken: at least FreeBSD and BSDI also have this problem. os.nice() should probably just be emulated using getpriority()/setpriority(), if they are available, but I'll get to that later. | ||||
* | SF patch #440170: Tests for fileinput module. | Tim Peters | 2001-07-11 | 2 | -1/+159 |
| | | | | | New test_fileinput.py from Nick Mathewson, fiddled to use TESTFN and sundry style nits. | ||||
* | SF patch #440144: Tests and minor bugfix for uu module. | Tim Peters | 2001-07-11 | 2 | -1/+124 |
| | | | | | New test_uu.py from Nick Mathewson, fiddled to work on Windows too. Somebody should check that it still works on non-Windows boxes, though! | ||||
* | Move the section on concrete numeric objects before the section on | Fred Drake | 2001-07-11 | 1 | -249/+249 |
| | | | | | | concrete sequence objects, since their API is simpler. This is in response to a comment in SF bug #440037. | ||||
* | Note addition of xmlrpclib | Andrew M. Kuchling | 2001-07-11 | 1 | -12/+15 |
| | | | | | | Comment out descr-branch section Update e-mail address (Time to begin writing this...) | ||||
* | Added information about the timeout parameter to the poll() method for | Fred Drake | 2001-07-11 | 1 | -1/+5 |
| | | | | | | polling objects. This closes SF bug #439823. Fixed a minor markup bug. | ||||
* | xmlrpclib for python 2.2; initial checkin | Fredrik Lundh | 2001-07-11 | 3 | -0/+1115 |
| |