Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | Patch #439995 (slightly modified from the uploaded version): | Thomas Wouters | 2001-07-11 | 4 | -286/+317 |
| | | | | | | | Work around Linux's nonstandard nice() systemcall, which does not return the new priority. This closes SF bug #439990. | ||||
* | The usual... | Fred Drake | 2001-07-11 | 1 | -367/+373 |
| | |||||
* | Check for --with-pydebug earlier, and record the result. | Fred Drake | 2001-07-11 | 1 | -15/+21 |
| | | | | | | | When setting up the basic OPT value for GCC, only use optimization if not using debugging mode. Fix a typo in a comment in the IPv6 check. | ||||
* | SF patch #440144: Tests and minor bugfix for uu module | Tim Peters | 2001-07-11 | 1 | -1/+1 |
| | | | | | | | | | decode(): While writing tests for uu.py, Nick Mathewson discovered that the 'Truncated input file' exception could never get raised, because its "if not str:" test was actually testing the builtin function "str", not the local string vrbl "s" as intended. Bugfix candidate. | ||||
* | Initial revision | Kurt B. Kaiser | 2001-07-11 | 1 | -0/+157 |
| | |||||
* | Change the way hex type-ins are displayed. The old way was way too | Barry Warsaw | 2001-07-10 | 1 | -48/+53 |
| | | | | | | | | fragile. Now the leading "0x" on hex numbers are displayed as labels and the type-in entry fields just accept the hex digits. Be sure to strip off the "0x" string when displaying hex values too. Also, de-string-module-ification, and other Python 2.x improvements. | ||||
* | __init__(), save_views(): Catch ValueError along with IOError and | Barry Warsaw | 2001-07-10 | 1 | -6/+7 |
| | | | | | EOFError so any failures in unmarshalling are just ignored. Use print>> instead of sys.stderr.write(). | ||||
* | Update a comment. | Barry Warsaw | 2001-07-10 | 1 | -2/+4 |
| | |||||
* | __init__(): Use augmented assignments. | Barry Warsaw | 2001-07-10 | 1 | -3/+5 |
| | |||||
* | De-string-module-ification. | Barry Warsaw | 2001-07-10 | 2 | -10/+11 |
| | |||||
* | __version__: Bump to 1.2 | Barry Warsaw | 2001-07-10 | 1 | -6/+8 |
| | | | | De-string-module-ification. |