summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Barry's latest (2.83). He likes this version particularly becauseGuido van Rossum1996-10-231-72/+125
| | | | 83 is a prime number.
* Added answer by Greg Stein about threads on Linux.Guido van Rossum1996-10-231-18/+32
|
* (py-indent-line): take an optional universal argument which says toBarry Warsaw1996-10-231-13/+22
| | | | | | | | | | | | | | defeat extra outdentation for block closing statements (return, raise, break, continue, pass). (py-compute-indentation): extra argument to honor block closing statements. (py-electric-colon, py-indent-region): use py-compute-indentation's extra argument (py-statement-closes-block-p): `pass' treated as a block closing statement.
* New version for 1.4 from Manus.Guido van Rossum1996-10-221-4/+12
|
* Added question about error from misuse of mangled names.Guido van Rossum1996-10-221-0/+7
|
* Added all current changes.Guido van Rossum1996-10-221-5/+205
|
* Added item about bug in Slackware96 libdl.Guido van Rossum1996-10-131-19/+30
|
* Add a dependency on clobber to the boot target. Now, if you run "makeGuido van Rossum1996-10-101-1/+1
| | | | -f Makefile.pre.in boot", all traces of previous runs are removed.
* Nils Fischbeck, Tim Hochberg, Terry Reedy, Ka-Ping YeeGuido van Rossum1996-10-081-0/+4
|
* Added 'static' target; add variable TARGET replacing pythonGuido van Rossum1996-10-081-3/+8
|
* Toss Q 3.10 on posix.listdir on NeXT. Add revived vpApp.Guido van Rossum1996-10-081-33/+26
|
* Toss the outdated QuickRef.Guido van Rossum1996-10-081-6639/+0
|
* (py-process-filter): Make sure current-buffer is restored, even in theBarry Warsaw1996-09-301-36/+41
| | | | | event of error. Can't use new Emacs primitive save-current-buffer, so use unwind-protect instead.
* Added editline fixGuido van Rossum1996-09-122-0/+81
|
* Rewrite sections on GUI and DOS/Windows, various other small edits,Guido van Rossum1996-09-111-134/+118
| | | | added 1996 copyright, $Revision$.
* Improvement suggested by Sjoerd: use $(MAKE)Guido van Rossum1996-09-111-2/+3
| | | | in boot target and use $(srcdir)/Makefile.pre.in
* Added Makefile.pre.in, my generic makefileGuido van Rossum1996-09-102-0/+265
|
* Rewritten by Ka-Ping Yee.Guido van Rossum1996-09-101-193/+167
|
* Removed some obsolete questions and references to version 1.2.Guido van Rossum1996-09-091-231/+159
| | | | | Added some cross refs about broken lambda and broken recursion of nested functions.
* PS: use -O2, not -O3Guido van Rossum1996-09-061-0/+37
|
* New email and zip code for GuidoGuido van Rossum1996-09-061-14/+14
|
* NEXT shared libs instructionsGuido van Rossum1996-09-061-0/+44
|
* (python-font-lock-keywords): with Python 1.4 `access' is no a keywordBarry Warsaw1996-09-041-1/+1
|
* I have been increasingly annoyed about the fact thatBarry Warsaw1996-09-041-0/+28
| | | | | | | | add-change-log-entry-other-window is so bad about guessing the proper name of Python functions, methods and variables, so finally I wrote the following (unidiff patch against python-mode.el 2.73): Per Cederqvist <ceder@signum.se>
* #stylisticsBarry Warsaw1996-09-041-2/+4
|
* (python-mode): typosBarry Warsaw1996-09-041-2/+2
|
* (python-mode): font-lock-defaults must be make-local-variable'dBarry Warsaw1996-09-041-16/+23
|
* (py-dump-help-string): Use documentation-property to get docstring.Barry Warsaw1996-09-031-2/+1
|
* (python-mode): font-lock-defaults necessary for Emacs 19, but doesn'tBarry Warsaw1996-09-031-1/+3
| | | | hurt for XEmacs.
* #py-shell gets an autoload cookieBarry Warsaw1996-09-031-0/+1
|
* New version submitted by Jim Fulton.Guido van Rossum1996-08-281-12/+29
|
* Fix paths to match python1.4 installation.Guido van Rossum1996-08-281-1/+1
| | | | (Forgot LIBP)
* Fix paths to match python1.4 installation.Guido van Rossum1996-08-281-2/+2
|
* Remove the entry for private variables (it's supposed to be a surprise!)Guido van Rossum1996-08-261-3/+0
|
* Some final changes. I'll give up on nicely reformatting andGuido van Rossum1996-08-261-8/+29
| | | | structuring it, for now.
* Added all changes in beta1 and beta3.Guido van Rossum1996-08-261-16/+446
| | | | Still very rough (needs reordering etc.).
* Added Vlad.Guido van Rossum1996-08-201-0/+1
|
* New generic makefile by Jim F; drop pyimenu.elGuido van Rossum1996-08-203-363/+66
|
* Minor updates.Guido van Rossum1996-08-201-6/+6
|
* typoGuido van Rossum1996-08-201-1/+1
|
* Barry's 2.73Guido van Rossum1996-08-201-6/+6
|
* Barry's 2.72Guido van Rossum1996-08-201-228/+561
|
* *** empty log message ***Barry Warsaw1996-08-201-3/+3
|
* (py-no-outdent-re): Added return, break, raise, continue since weBarry Warsaw1996-08-121-1/+3
| | | | already outdent for those statements.
* New AIX-NOTESGuido van Rossum1996-08-091-0/+144
|
* New AIX-NOTESGuido van Rossum1996-08-091-61/+0
|
* #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.
* (py-electric-colon): Use (py-next-statement -1) instead ofBarry Warsaw1996-08-021-1/+1
| | | | (forward-line -1), to properly catch continued statements.