]>
granicus.if.org Git - python/log
Barry Warsaw [Wed, 24 Jul 1996 18:32:08 +0000 (18:32 +0000)]
#comment update, re: py-mode-syntax-table
Barry Warsaw [Wed, 24 Jul 1996 18:26:53 +0000 (18:26 +0000)]
(py-forward-into-nomenclature, py-backward-into-nomenclature): New functions.
Guido van Rossum [Wed, 24 Jul 1996 02:42:38 +0000 (02:42 +0000)]
putenv
Guido van Rossum [Wed, 24 Jul 1996 02:41:31 +0000 (02:41 +0000)]
Added putenv to AC_CHECK_FUNCS list.
Guido van Rossum [Wed, 24 Jul 1996 02:35:43 +0000 (02:35 +0000)]
Append version number to library install directory.
"make libinstall" no longer implies "make sharedinstall".
"make altinstall" and "make altbininstall" install the python binary
with a version number, for tentative installations (this does not
install the include files or man page).
Guido van Rossum [Wed, 24 Jul 1996 02:33:33 +0000 (02:33 +0000)]
Added version number to destination.
Forget about the trick to create directories through dependencies --
it's impossible to get it right in the light of parallellizing Make
implementations and the inability to specify dependencies between
directories (because creating the subdirectory modifies the parent).
Guido van Rossum [Wed, 24 Jul 1996 01:31:37 +0000 (01:31 +0000)]
As a side effect of calling PySys_SetArgv (setpythonargv), the
directory containing argv[0] is inserted in front of sys.path.
If argv[0] contains no directory, an empty string is inserted.
If argv is empty, nothing happens.
Guido van Rossum [Wed, 24 Jul 1996 00:55:17 +0000 (00:55 +0000)]
Added hook to os.environ to call putenv(), if it exists.
Guido van Rossum [Wed, 24 Jul 1996 00:51:51 +0000 (00:51 +0000)]
Added Sam Rushing's errno module
Guido van Rossum [Wed, 24 Jul 1996 00:51:20 +0000 (00:51 +0000)]
Converted to new style names by Skip Montanaro
Guido van Rossum [Wed, 24 Jul 1996 00:42:42 +0000 (00:42 +0000)]
Different lines for bsddb module.
Guido van Rossum [Tue, 23 Jul 1996 19:18:10 +0000 (19:18 +0000)]
Added simple-minded (i.e. leaking :-) putenv() interface, if os has it.
Guido van Rossum [Tue, 23 Jul 1996 18:16:56 +0000 (18:16 +0000)]
Updated pointers to Andrew Kuchlings fine software.
Guido van Rossum [Tue, 23 Jul 1996 18:12:39 +0000 (18:12 +0000)]
Added 3rd optional argument to translate(), a string of characters to delete.
Added maketrans(), a utility to create a translation table.
Fred Drake [Tue, 23 Jul 1996 17:47:21 +0000 (17:47 +0000)]
(rmt.py): Updated to "modern" python coding conventions, somewhat. Keyword
arguments and explicit calls to .pack() are used; no more dictionaries
are being passed to Tkinter constructors. Otherwise, the example is
unchanged. (The app isn't implemented as a Python object.)
Guido van Rossum [Tue, 23 Jul 1996 17:27:05 +0000 (17:27 +0000)]
Remove all CRLF -> LF translation for file uploads, since we cannot
reliably distinguish binary files from text files (and Mac Netscape
sends all files in "binary" form, i.e. it sends text files with only
CR delimiters...).
Barry Warsaw [Tue, 23 Jul 1996 15:03:16 +0000 (15:03 +0000)]
(py-shift-region-left): When checking for left edged code, watch for
blank lines.
Guido van Rossum [Tue, 23 Jul 1996 03:47:28 +0000 (03:47 +0000)]
Renamed all occurrences of posix to os.
Guido van Rossum [Tue, 23 Jul 1996 03:46:24 +0000 (03:46 +0000)]
Changes by Jim Fulton: pass environ around as arg;
keep_blank_values option to parse().
Guido van Rossum [Tue, 23 Jul 1996 02:28:32 +0000 (02:28 +0000)]
Added splitext()
Guido van Rossum [Mon, 22 Jul 1996 23:46:00 +0000 (23:46 +0000)]
New versions generated on a Linux 2.x system by AMK
Guido van Rossum [Mon, 22 Jul 1996 22:26:07 +0000 (22:26 +0000)]
Optimizations and one intentional loophole by Jim Fulton.
The optimizations consist mostly of using local variables to cache
methods or instance variables used a lot (e.g. "self.write").
The loopholes allows marshalling extension types as long as they have
a __class__ attribute (in which case they may support the rest of the
class piclking protocol as well). This allows pickling MESS extension
types.
Guido van Rossum [Mon, 22 Jul 1996 21:50:43 +0000 (21:50 +0000)]
This is needed for users of Linux 2.x
Guido van Rossum [Mon, 22 Jul 1996 16:17:27 +0000 (16:17 +0000)]
Got rid of ChangeLog -- too bad, but I can't keep it up to date.
Guido van Rossum [Mon, 22 Jul 1996 16:16:25 +0000 (16:16 +0000)]
Use NEWOBJ() macro instead of calling newobject() directly.
Jack Jansen [Mon, 22 Jul 1996 15:26:01 +0000 (15:26 +0000)]
Added SetFolder method which sets Standard File initial folder
Jack Jansen [Mon, 22 Jul 1996 15:25:10 +0000 (15:25 +0000)]
Added PyOS_CheckStack() function which returns -1 when we are running
low on stackspace.
Jack Jansen [Mon, 22 Jul 1996 15:23:58 +0000 (15:23 +0000)]
Added USE_STACKCHECK define
Guido van Rossum [Mon, 22 Jul 1996 15:23:25 +0000 (15:23 +0000)]
Fuck. For PC support, this must be in the distribution.
Guido van Rossum [Sun, 21 Jul 1996 03:05:05 +0000 (03:05 +0000)]
Restore the capability to pass a class (usually Pack) as an option to widget
creation; no longer support this for the config method.
Guido van Rossum [Sun, 21 Jul 1996 02:53:27 +0000 (02:53 +0000)]
Use gcc, not gcc-elf on Linux
Guido van Rossum [Sun, 21 Jul 1996 02:51:05 +0000 (02:51 +0000)]
Additions to the cast of thousands
Guido van Rossum [Sun, 21 Jul 1996 02:50:30 +0000 (02:50 +0000)]
More changes by Sjoerd & Jack
Guido van Rossum [Sun, 21 Jul 1996 02:49:55 +0000 (02:49 +0000)]
Addition by Jack to test for missing type support
Guido van Rossum [Sun, 21 Jul 1996 02:48:16 +0000 (02:48 +0000)]
Added extra notes for AIX and SCO.
Guido van Rossum [Sun, 21 Jul 1996 02:46:47 +0000 (02:46 +0000)]
Use INSTALL_PROGRAM for makesetup
Guido van Rossum [Sun, 21 Jul 1996 02:35:58 +0000 (02:35 +0000)]
Added Jim Fulton's "asharedmodule" target
Guido van Rossum [Sun, 21 Jul 1996 02:34:55 +0000 (02:34 +0000)]
Use INT_MAX/LONG_MAX instead of non-ANSI LONG_BIT
Guido van Rossum [Sun, 21 Jul 1996 02:33:56 +0000 (02:33 +0000)]
New submission by Fred Drake.
Guido van Rossum [Sun, 21 Jul 1996 02:33:38 +0000 (02:33 +0000)]
New style names for getprogramname and getargcargv
Guido van Rossum [Sun, 21 Jul 1996 02:32:44 +0000 (02:32 +0000)]
Rewritten keys() and has_key() to avoid memory leaks.
Guido van Rossum [Sun, 21 Jul 1996 02:31:35 +0000 (02:31 +0000)]
complex -> Py_complex
Guido van Rossum [Sun, 21 Jul 1996 02:30:39 +0000 (02:30 +0000)]
Hacks for MS_COREDLL
Guido van Rossum [Sun, 21 Jul 1996 02:29:46 +0000 (02:29 +0000)]
Only __dict__ and __class__ are read-only instance attributes
Guido van Rossum [Sun, 21 Jul 1996 02:28:18 +0000 (02:28 +0000)]
new .pyc magic number (** operator)
Guido van Rossum [Sun, 21 Jul 1996 02:28:11 +0000 (02:28 +0000)]
added 1996
Guido van Rossum [Sun, 21 Jul 1996 02:27:43 +0000 (02:27 +0000)]
Py_complex; and WITHOUT_COMPLEX added to getargs.c
Guido van Rossum [Sun, 21 Jul 1996 02:24:22 +0000 (02:24 +0000)]
renamed complex -> Py_complex
Guido van Rossum [Sun, 21 Jul 1996 02:23:54 +0000 (02:23 +0000)]
Hacks for MS_COREDLL
Guido van Rossum [Sun, 21 Jul 1996 02:23:24 +0000 (02:23 +0000)]
added new names for getprogramname, getargcargv
Guido van Rossum [Sun, 21 Jul 1996 02:22:56 +0000 (02:22 +0000)]
Added prototype + doc for PySequence_Length()
Guido van Rossum [Sun, 21 Jul 1996 02:22:12 +0000 (02:22 +0000)]
added parser module to overview
Guido van Rossum [Sun, 21 Jul 1996 02:21:49 +0000 (02:21 +0000)]
added plock
Guido van Rossum [Sun, 21 Jul 1996 02:21:31 +0000 (02:21 +0000)]
Minute changes by Fred Drake
Guido van Rossum [Sun, 21 Jul 1996 02:20:58 +0000 (02:20 +0000)]
changes by Jack to Mac docs
Guido van Rossum [Sun, 21 Jul 1996 02:20:06 +0000 (02:20 +0000)]
Don't use tktools, dummy! Reworded test message slightly.
Guido van Rossum [Sun, 21 Jul 1996 02:19:32 +0000 (02:19 +0000)]
fix canvas bind commands
Guido van Rossum [Sun, 21 Jul 1996 02:18:22 +0000 (02:18 +0000)]
Added option to refilemessages() to keep sequences
Guido van Rossum [Sun, 21 Jul 1996 02:17:52 +0000 (02:17 +0000)]
Changes for new parser module (Fred Drake)
Guido van Rossum [Sun, 21 Jul 1996 02:16:53 +0000 (02:16 +0000)]
New opcodes BINARY_POWER, RAISE_VARARGS, CALL_FUNCTION, MAKE_FUNCTION
Guido van Rossum [Sun, 21 Jul 1996 02:09:54 +0000 (02:09 +0000)]
add mac compatibility
Jack Jansen [Thu, 18 Jul 1996 16:07:05 +0000 (16:07 +0000)]
- Added a file dialog example
- Added pointers to library documentation
Jack Jansen [Wed, 10 Jul 1996 15:48:25 +0000 (15:48 +0000)]
Old names changed to Py_GetCopyright, etc.
Jack Jansen [Wed, 10 Jul 1996 15:47:19 +0000 (15:47 +0000)]
inittab is a "struct _inittab".
Jack Jansen [Wed, 10 Jul 1996 13:19:08 +0000 (13:19 +0000)]
Given a module/pathname file created by findmodulefiles compile all
needed modules and create a file full of PYC resources.
Barry Warsaw [Mon, 8 Jul 1996 22:37:06 +0000 (22:37 +0000)]
added a thing on the to-do list
Barry Warsaw [Fri, 5 Jul 1996 20:11:35 +0000 (20:11 +0000)]
(python-font-lock-keywords): added class and def
Barry Warsaw [Wed, 3 Jul 1996 23:15:51 +0000 (23:15 +0000)]
(py-mode-syntax-table): revert underscore to word class, even though I
don't agree with it.
Barry Warsaw [Wed, 3 Jul 1996 23:12:52 +0000 (23:12 +0000)]
(py-delete-char): Obey numeric argument.
Barry Warsaw [Wed, 3 Jul 1996 22:59:12 +0000 (22:59 +0000)]
(py-shift-region-left, py-shift-region-right, py-indent-right,
py-outdent-left, py-mode-map): Folded all functionality into
py-shift-region-* commands. Bound C-c C-l to py-shift-region-left and
C-c C-r to py-shift-region-right. Removed py-indent-right and
py-indent-left.
cvs2svn [Mon, 1 Jul 1996 18:34:03 +0000 (18:34 +0000)]
This commit was manufactured by cvs2svn to create tag 'r14beta1'.
Guido van Rossum [Mon, 1 Jul 1996 18:34:03 +0000 (18:34 +0000)]
New versions of VC project which has no source files in PC/
Guido van Rossum [Fri, 28 Jun 1996 20:18:10 +0000 (20:18 +0000)]
added plock
Guido van Rossum [Fri, 28 Jun 1996 20:15:41 +0000 (20:15 +0000)]
split autoconf target in two
Guido van Rossum [Fri, 28 Jun 1996 20:15:15 +0000 (20:15 +0000)]
Slightly different Windows ifdefs
Guido van Rossum [Fri, 28 Jun 1996 20:13:08 +0000 (20:13 +0000)]
added comments about tcl/tk -l options
Guido van Rossum [Fri, 28 Jun 1996 19:12:06 +0000 (19:12 +0000)]
Added PC files from Jim Ahlstrom.
Guido van Rossum [Fri, 28 Jun 1996 18:55:32 +0000 (18:55 +0000)]
Added plock() system call.
Changed test for Windows times() emulation.
Guido van Rossum [Fri, 28 Jun 1996 17:28:51 +0000 (17:28 +0000)]
Fixed restore_files(); added reset_files(); made these more flexible.
Guido van Rossum [Wed, 26 Jun 1996 21:15:02 +0000 (21:15 +0000)]
aix sharedlib helpers
Guido van Rossum [Wed, 26 Jun 1996 21:07:08 +0000 (21:07 +0000)]
Corrections to aix_loaderror(), by Manus Hand.
Guido van Rossum [Wed, 26 Jun 1996 20:41:23 +0000 (20:41 +0000)]
Jeremy's patches for more robust handling of unmarshallable types.
Guido van Rossum [Wed, 26 Jun 1996 20:20:57 +0000 (20:20 +0000)]
Add docs for planned improved handling of the marshalling of
unmarshallable objects.
Guido van Rossum [Wed, 26 Jun 1996 19:53:41 +0000 (19:53 +0000)]
new versions from Jim A
Guido van Rossum [Wed, 26 Jun 1996 19:52:38 +0000 (19:52 +0000)]
socket wrapper module around _socket for all Window platforms
Guido van Rossum [Wed, 26 Jun 1996 19:50:09 +0000 (19:50 +0000)]
Some updates. Still out of date.
Guido van Rossum [Wed, 26 Jun 1996 19:48:47 +0000 (19:48 +0000)]
new contributors
Guido van Rossum [Wed, 26 Jun 1996 19:47:56 +0000 (19:47 +0000)]
url2path for NT
Guido van Rossum [Wed, 26 Jun 1996 19:47:37 +0000 (19:47 +0000)]
add nturl2path
Guido van Rossum [Wed, 26 Jun 1996 19:47:01 +0000 (19:47 +0000)]
result of new configure.in
Guido van Rossum [Wed, 26 Jun 1996 19:45:23 +0000 (19:45 +0000)]
Split some long lines (headers, functions).
Rework --with-readline and --with-thread.
Guido van Rossum [Wed, 26 Jun 1996 19:43:22 +0000 (19:43 +0000)]
Added Andrew Kuchling's explanation of regexp's.
Guido van Rossum [Wed, 26 Jun 1996 19:30:01 +0000 (19:30 +0000)]
Ignore latex intermediate products.
Guido van Rossum [Wed, 26 Jun 1996 19:29:21 +0000 (19:29 +0000)]
Added __doc__ to predefined module attributes.
Guido van Rossum [Wed, 26 Jun 1996 19:27:05 +0000 (19:27 +0000)]
typo
Guido van Rossum [Wed, 26 Jun 1996 19:26:55 +0000 (19:26 +0000)]
expr_list -> expression_list
Guido van Rossum [Wed, 26 Jun 1996 19:26:40 +0000 (19:26 +0000)]
explain global better
Guido van Rossum [Wed, 26 Jun 1996 19:26:20 +0000 (19:26 +0000)]
added '**kw' to parameter list syntax
Guido van Rossum [Wed, 26 Jun 1996 19:25:12 +0000 (19:25 +0000)]
mktime returns a float now.
Guido van Rossum [Wed, 26 Jun 1996 19:24:22 +0000 (19:24 +0000)]
Added thread unsafety warning. Added optional retain arg to split.