summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* For method=POST, append a query string from the environment or fromGuido van Rossum1996-08-081-1/+7
| | | | sys.argv[1], effectively merging the fields.
* Add optional third parameter to split() and splitfields(), giving theGuido van Rossum1996-08-082-8/+44
| | | | | maximum number of delimiters to parse; e.g. splitfields("a,b,c,d", ",", 2) -> ["a", "b", "c,d"].
* Changed split() to be compatible with changes to string.split(): theGuido van Rossum1996-08-081-4/+24
| | | | | | optional third argument gives a maximum number of delimiters to parse. The new function splitx() is like split() but returns a list containing the words as well as the delimiters.
* Slight update of doc string -- suggest default args for __init__, noGuido van Rossum1996-08-081-4/+6
| | | | longer complain that __getinitargs__ is an ugly name.
* Restore 1.3 behavior of gettempdir(): if tempdir is already set, believe it.Guido van Rossum1996-08-081-0/+2
|
* Don't use 'false'; use '0'.Guido van Rossum1996-08-081-1/+1
|
* stupid typo in latest fix ('Name' should be 'name')Guido van Rossum1996-08-082-2/+2
|
* Need to import * from typesGuido van Rossum1996-08-082-4/+2
|
* Added test for math moduleGuido van Rossum1996-08-083-0/+183
|
* Use fcntl.h instead of sys/fcntl.h; use h2py.py from Tools/scriptsGuido van Rossum1996-08-082-8/+8
|
* New AIX specific subdirsGuido van Rossum1996-08-0820-0/+2850
|
* Changed to use 8-byte doubles. Also re-enabled optimizations, 68020Jack Jansen1996-08-071-1342/+1330
| | | | codegen.
* Moved build.html to building.htmlJack Jansen1996-08-071-1/+1
|
* Changed instructions for new releases of cwgusi, waste and tcl/tk,Jack Jansen1996-08-061-209/+274
| | | | moved some urls around, reformatted.
* New releases of CWGUSI, Waste and Tcl/Tk.Jack Jansen1996-08-0612-4894/+4899
|
* Updated for new tcl/tk releaseJack Jansen1996-08-061-3048/+3093
|
* GUSI mkdir() lost its dummy second argJack Jansen1996-08-061-0/+4
|
* New waste releaseJack Jansen1996-08-061-1/+2
|
* Upgraded to Waste 1.2fJack Jansen1996-08-063-98/+114
|
* #updated commentaryBarry Warsaw1996-08-061-4/+3
|
* (py-menu): Create default valueBarry Warsaw1996-08-061-0/+7
|
* (py-forward-into-nomenclature): Slightly better regex for stopping onBarry Warsaw1996-08-051-2/+4
| | | | underscore.
* rebinhexedJack Jansen1996-08-053-68/+69
|
* Build instructions for source distribution that were somehow neverJack Jansen1996-08-051-0/+351
| | | | | checked in. Modified: removed stdwin references, added note on tcl memory allocation.
* (py-electric-colon): Use (py-next-statement -1) instead ofBarry Warsaw1996-08-021-1/+1
| | | | (forward-line -1), to properly catch continued statements.
* Removed references to mactcp, macdnr and stdwin modulesJack Jansen1996-08-029-322/+240
| | | | Rebinhexed resource files
* 1.4b2 projectsJack Jansen1996-08-0212-5213/+5274
|
* Upped version number, rebinhexed everythingJack Jansen1996-08-027-4284/+4304
|
* Guido's 1.4b2 fixes: Py_GetProgramName, Py_GetPrefix and Py_GetExecPrefix.Jack Jansen1996-08-021-6/+20
|
* RegeneratedJack Jansen1996-08-0210-30/+0
|
* Regenerated from CW9 includes (only QuickDraw really got a few new values)Jack Jansen1996-08-0216-17/+22
|
* PyMac_BuildNumVersion addedJack Jansen1996-08-021-0/+2
|
* #updated commentsBarry Warsaw1996-08-011-19/+22
|
* (python-mode): automatically install imenu stuff.Barry Warsaw1996-08-011-8/+15
|
* (imenu-example--python-show-method-args-p,Barry Warsaw1996-08-011-0/+210
| | | | | | | | | | | | | imenu-example--python-class-regexp, imenu-example--python-method-regexp, imenu-example--python-method-no-arg-parens, imenu-example--python-method-arg-parens, imenu-example--generic-python-expression, imenu-example--python-generic-regexp, imenu-example--python-generic-parens): New variables. (imenu-example--create-python-index, imenu-example--create-python-index-engine): New functions.
* (py-keep-region-active): Zap duplicate defun.Barry Warsaw1996-08-011-11/+6
|
* Final text for beta2 release. Hopefully no pre-1.4 information is left.Guido van Rossum1996-08-011-151/+219
|
* New project files, with sliceobject.c added.Guido van Rossum1996-08-018-9730/+4081
|
* (py-delete-char): Check for py-honor-comment-indentation.Barry Warsaw1996-08-011-0/+1
|
* (py-mode): comment-start is now "# " so indent-for-comment does theBarry Warsaw1996-08-011-6/+41
| | | | | | | | | | right thing. (py-comment-region): let-bind comment-start to "## " so commented regions get transformed into non-indenting comment lines. (py-compute-region): Implement modification to rule for recognizing "indenting comment lines".
* CW9Jack Jansen1996-08-0118-5269/+6127
|
* Removed debug outputJack Jansen1996-08-011-2/+0
|
* Removed unused varJack Jansen1996-08-012-5/+0
|
* NumVersion stuff has changedJack Jansen1996-08-012-47/+8
|
* - Minimum stacksize is now 8K for PPC, 4K for 68KJack Jansen1996-08-011-7/+20
| | | | - Added PyMac_BuildNumVersion
* New .pyc magic numnber, too.Guido van Rossum1996-08-011-1/+1
|
* Use Tcl/Tk 7.5/4.1 by default.Guido van Rossum1996-08-011-2/+2
|
* Put definition of _REENTRANT in config.hGuido van Rossum1996-08-015-74/+72
|
* Allow compilation by K&R C compiler.Guido van Rossum1996-08-011-8/+8
|
* The usualGuido van Rossum1996-07-312-126/+121
|