]> git.ipfire.org Git - thirdparty/Python/cpython.git/log
thirdparty/Python/cpython.git
30 years agoRemoved addbase.__del__ because it can't work.
Sjoerd Mullender [Tue, 15 Aug 1995 11:33:39 +0000 (11:33 +0000)] 
Removed addbase.__del__ because it can't work.
If code keeps a reference to self.fp or any of its methods, you don't
want to close self.fp just because no explicit reference is kept to self.

30 years agoDocumented MacOS module.
Jack Jansen [Mon, 14 Aug 1995 13:40:05 +0000 (13:40 +0000)] 
Documented MacOS module.

30 years agoDocumented PromptGetFile and optional prompt to GetDirectory.
Jack Jansen [Mon, 14 Aug 1995 13:39:16 +0000 (13:39 +0000)] 
Documented PromptGetFile and optional prompt to GetDirectory.

30 years agoFixed incorrect tex-code for readline
Jack Jansen [Mon, 14 Aug 1995 13:38:36 +0000 (13:38 +0000)] 
Fixed incorrect tex-code for readline

30 years agoPut debug output inside 'if DEBUG'.
Jack Jansen [Mon, 14 Aug 1995 12:41:20 +0000 (12:41 +0000)] 
Put debug output inside 'if DEBUG'.

30 years agoVarious fixes: missing imports, missing calls to
Jack Jansen [Mon, 14 Aug 1995 12:39:54 +0000 (12:39 +0000)] 
Various fixes: missing imports, missing calls to
MacOS.HandleEvent. Also, prints are now inside 'if DEBUG'.

30 years agoUseful routines on a mac:
Jack Jansen [Mon, 14 Aug 1995 12:38:42 +0000 (12:38 +0000)] 
Useful routines on a mac:
- mkalias makes a finder alias
- copy copies a file, finder info, resources and all.
- copytree does the same for a whole tree.

30 years agoAdded PyMac_PromptGetFile, removed stuff gone to other sources.
Jack Jansen [Mon, 14 Aug 1995 12:36:37 +0000 (12:36 +0000)] 
Added PyMac_PromptGetFile, removed stuff gone to other sources.

30 years agoLots of stuff moved to other files.
Jack Jansen [Mon, 14 Aug 1995 12:35:10 +0000 (12:35 +0000)] 
Lots of stuff moved to other files.

Include pythonresources.h.

30 years agoNew file: list resource-ids in one place.
Jack Jansen [Mon, 14 Aug 1995 12:34:42 +0000 (12:34 +0000)] 
New file: list resource-ids in one place.

30 years agoLots of stuff removed: gone to various other files.
Jack Jansen [Mon, 14 Aug 1995 12:33:48 +0000 (12:33 +0000)] 
Lots of stuff removed: gone to various other files.

30 years agoThis is completely different from the old mainmain (which wasn't used
Jack Jansen [Mon, 14 Aug 1995 12:33:20 +0000 (12:33 +0000)] 
This is completely different from the old mainmain (which wasn't used
anymore) and is the new main program for MacPython. Built from bits
and pieces of config.c, macglue.c and pythonmain.c.

30 years agomacgetpath - sys.path setting code factored out of config.c and
Jack Jansen [Mon, 14 Aug 1995 12:31:44 +0000 (12:31 +0000)] 
macgetpath - sys.path setting code factored out of config.c and
macglue.c
macgetplatform - factored out of config.c

30 years agoMerged Jack's macgetcompiler.c and Guido's maccompiler.c and named the
Jack Jansen [Mon, 14 Aug 1995 12:30:15 +0000 (12:30 +0000)] 
Merged Jack's macgetcompiler.c and Guido's maccompiler.c and named the
result macgetcompiler.c (after all, *I* did the merging:-)

30 years agoRenumbered dialogs:
Jack Jansen [Mon, 14 Aug 1995 12:24:05 +0000 (12:24 +0000)] 
Renumbered dialogs:
128-255 are for interpreter use
256-511 are for extension modules, libraries, etc
512 and above are for applications

30 years agoAdded new call PromptGetFile (like StandardGetFile, but accepts a
Jack Jansen [Mon, 14 Aug 1995 12:22:56 +0000 (12:22 +0000)] 
Added new call PromptGetFile (like StandardGetFile, but accepts a
prompt) and added optional prompt to GetDirectory.

30 years agoAdded missing initializer and extra error check.
Jack Jansen [Mon, 14 Aug 1995 12:21:50 +0000 (12:21 +0000)] 
Added missing initializer and extra error check.

30 years agoAdded prompts to various file-select dialogs
Jack Jansen [Mon, 14 Aug 1995 12:21:12 +0000 (12:21 +0000)] 
Added prompts to various file-select dialogs
Renumbered resources to above 512

30 years agoAdded List.slb alias
Jack Jansen [Mon, 14 Aug 1995 12:20:22 +0000 (12:20 +0000)] 
Added List.slb alias

30 years agoBinhexify any .rsrc file in a tree
Jack Jansen [Mon, 14 Aug 1995 12:19:20 +0000 (12:19 +0000)] 
Binhexify any .rsrc file in a tree

30 years agoAdded missing 'leftchar' initializer.
Jack Jansen [Mon, 14 Aug 1995 12:17:57 +0000 (12:17 +0000)] 
Added missing 'leftchar' initializer.

30 years agoShuffled include's around (name conflict on Mac wrt teclick())
Jack Jansen [Mon, 14 Aug 1995 12:17:18 +0000 (12:17 +0000)] 
Shuffled include's around (name conflict on Mac wrt teclick())

30 years agoAdded prompt to getfile dialog
Jack Jansen [Mon, 14 Aug 1995 12:14:55 +0000 (12:14 +0000)] 
Added prompt to getfile dialog
Renumbered resources

30 years agoAdded basic mac documentation.
Jack Jansen [Mon, 14 Aug 1995 11:55:07 +0000 (11:55 +0000)] 
Added basic mac documentation.

30 years agoInterface to the Mac List Manager.
Jack Jansen [Mon, 14 Aug 1995 11:46:24 +0000 (11:46 +0000)] 
Interface to the Mac List Manager.

30 years agoTemporary fix for access statement.
Sjoerd Mullender [Mon, 14 Aug 1995 07:49:51 +0000 (07:49 +0000)] 
Temporary fix for access statement.
Definition of Error was missing.

30 years agoexec() -> exec
Guido van Rossum [Fri, 11 Aug 1995 14:24:47 +0000 (14:24 +0000)] 
exec() -> exec

30 years agotest for specific bug in vars()
Guido van Rossum [Fri, 11 Aug 1995 14:24:35 +0000 (14:24 +0000)] 
test for specific bug in vars()

30 years agoadded select_present and select_range to Entry widget
Guido van Rossum [Fri, 11 Aug 1995 14:21:06 +0000 (14:21 +0000)] 
added select_present and select_range to Entry widget

30 years agorenamed DbShelf->DbfilenameShelf;added BsdDbShelf (David Ely)
Guido van Rossum [Fri, 11 Aug 1995 14:19:16 +0000 (14:19 +0000)] 
renamed DbShelf->DbfilenameShelf;added BsdDbShelf (David Ely)

30 years agochange default flag to match dbm/gdbm
Guido van Rossum [Fri, 11 Aug 1995 14:18:27 +0000 (14:18 +0000)] 
change default flag to match dbm/gdbm

30 years agomake sure the path ends in a slash in reload()
Guido van Rossum [Fri, 11 Aug 1995 13:56:04 +0000 (13:56 +0000)] 
make sure the path ends in a slash in reload()

30 years agowarn about bacslash-s lacking
Guido van Rossum [Fri, 11 Aug 1995 00:31:57 +0000 (00:31 +0000)] 
warn about bacslash-s lacking

30 years agoexec() -> exec
Guido van Rossum [Thu, 10 Aug 1995 19:46:50 +0000 (19:46 +0000)] 
exec() -> exec

30 years agoremove file: from list of protocols taking host
Guido van Rossum [Thu, 10 Aug 1995 19:45:41 +0000 (19:45 +0000)] 
remove file: from list of protocols taking host

30 years agochanged version :-)
Guido van Rossum [Thu, 10 Aug 1995 19:44:54 +0000 (19:44 +0000)] 
changed version :-)

30 years agoadded note about missing features
Guido van Rossum [Thu, 10 Aug 1995 19:43:53 +0000 (19:43 +0000)] 
added note about missing features

30 years agonoted obsolescence; exec() -> exec
Guido van Rossum [Thu, 10 Aug 1995 19:43:04 +0000 (19:43 +0000)] 
noted obsolescence; exec() -> exec

30 years agodefault tabsize to 8
Guido van Rossum [Thu, 10 Aug 1995 19:42:05 +0000 (19:42 +0000)] 
default tabsize to 8

30 years agofix reload use of __filename__
Guido van Rossum [Thu, 10 Aug 1995 19:40:39 +0000 (19:40 +0000)] 
fix reload use of __filename__

30 years agofix stupid typo: r->RDLK
Guido van Rossum [Thu, 10 Aug 1995 19:38:36 +0000 (19:38 +0000)] 
fix stupid typo: r->RDLK

30 years agosame thing as for dospath, plus HOMEDRIVE/HOMEPATH support
Guido van Rossum [Thu, 10 Aug 1995 19:34:50 +0000 (19:34 +0000)] 
same thing as for dospath, plus HOMEDRIVE/HOMEPATH support

30 years agodon't print Cannot open/stat messages
Guido van Rossum [Thu, 10 Aug 1995 19:32:22 +0000 (19:32 +0000)] 
don't print Cannot open/stat messages

30 years agoexec() -> exec
Guido van Rossum [Thu, 10 Aug 1995 19:31:20 +0000 (19:31 +0000)] 
exec() -> exec

30 years agoInitial revision
Guido van Rossum [Thu, 10 Aug 1995 19:29:28 +0000 (19:29 +0000)] 
Initial revision

30 years agoredefined normcase()
Guido van Rossum [Thu, 10 Aug 1995 19:27:42 +0000 (19:27 +0000)] 
redefined normcase()

30 years agoupgdaded the test program
Guido van Rossum [Thu, 10 Aug 1995 19:26:37 +0000 (19:26 +0000)] 
upgdaded the test program

30 years agorevamped somewhat
Guido van Rossum [Thu, 10 Aug 1995 19:24:30 +0000 (19:24 +0000)] 
revamped somewhat

30 years agotemporarily disabled the access statements
Guido van Rossum [Thu, 10 Aug 1995 19:23:37 +0000 (19:23 +0000)] 
temporarily disabled the access statements

30 years agoadded normpath() and splitdrive()
Guido van Rossum [Thu, 10 Aug 1995 18:09:16 +0000 (18:09 +0000)] 
added normpath() and splitdrive()

30 years agoadded note about obsolescence
Guido van Rossum [Thu, 10 Aug 1995 18:00:03 +0000 (18:00 +0000)] 
added note about obsolescence

30 years agocorrect description of integer division; describe optional read arg
Guido van Rossum [Thu, 10 Aug 1995 14:22:39 +0000 (14:22 +0000)] 
correct description of integer division; describe optional read arg

30 years agoclarify optional status
Guido van Rossum [Thu, 10 Aug 1995 14:21:49 +0000 (14:21 +0000)] 
clarify optional status

30 years agotypos only
Guido van Rossum [Thu, 10 Aug 1995 14:21:11 +0000 (14:21 +0000)] 
typos only

30 years agochapter on new things in 1.3
Guido van Rossum [Thu, 10 Aug 1995 14:18:10 +0000 (14:18 +0000)] 
chapter on new things in 1.3

30 years agoDocumented FindFolder, GetFInfo, SetFInfo and the FInfo object.
Jack Jansen [Thu, 10 Aug 1995 11:53:14 +0000 (11:53 +0000)] 
Documented FindFolder, GetFInfo, SetFInfo and the FInfo object.

30 years agore-enabled newmodule
Jack Jansen [Wed, 9 Aug 1995 15:17:23 +0000 (15:17 +0000)] 
re-enabled newmodule

30 years agoMkPluginAliases - Scripts (AppleScript and Python) to create aliases
Jack Jansen [Wed, 9 Aug 1995 15:16:58 +0000 (15:16 +0000)] 
MkPluginAliases - Scripts (AppleScript and Python) to create aliases
to PPC plugin libraries
fixfiletypes.py - Script to recursively set mac creator/type based on
extension

30 years agoBetter fix for creating extended pythons. (getpath.c needs to be
Sjoerd Mullender [Wed, 9 Aug 1995 10:39:48 +0000 (10:39 +0000)] 
Better fix for creating extended pythons.  (getpath.c needs to be
recompiled for the extensions)

30 years agoFixed creation of extended python.
Sjoerd Mullender [Wed, 9 Aug 1995 09:18:20 +0000 (09:18 +0000)] 
Fixed creation of extended python.

30 years agorather ugly temporary hacks to make it work in grail & restricted mode
Guido van Rossum [Wed, 9 Aug 1995 02:33:38 +0000 (02:33 +0000)] 
rather ugly temporary hacks to make it work in grail & restricted mode

30 years agofix bug in reload
Guido van Rossum [Wed, 9 Aug 1995 02:32:49 +0000 (02:32 +0000)] 
fix bug in reload

30 years agoadd module binascii; add r_unload/s_unload; don't change 'rb' to 'r' in open
Guido van Rossum [Wed, 9 Aug 1995 02:32:08 +0000 (02:32 +0000)] 
add module binascii; add r_unload/s_unload; don't change 'rb' to 'r' in open

30 years agochange blank line insertion at a few places and fix recursion bug for </var>
Guido van Rossum [Wed, 9 Aug 1995 02:31:00 +0000 (02:31 +0000)] 
change blank line insertion at a few places and fix recursion bug for </var>

30 years agoadded getpath.c; added -P exec_prefix; added explanatory note
Guido van Rossum [Tue, 8 Aug 1995 14:21:07 +0000 (14:21 +0000)] 
added getpath.c; added -P exec_prefix; added explanatory note

30 years agoadded MACHDEP back in
Guido van Rossum [Tue, 8 Aug 1995 14:18:12 +0000 (14:18 +0000)] 
added MACHDEP back in

30 years agoInitial revision
Guido van Rossum [Tue, 8 Aug 1995 14:11:07 +0000 (14:11 +0000)] 
Initial revision

30 years agoadd xstat (extended stat, returns resource fork size and creator/type)
Guido van Rossum [Tue, 8 Aug 1995 14:10:22 +0000 (14:10 +0000)] 
add xstat (extended stat, returns resource fork size and creator/type)

30 years agoset some fields to zero for directories
Guido van Rossum [Tue, 8 Aug 1995 14:09:33 +0000 (14:09 +0000)] 
set some fields to zero for directories

30 years agopass prefix etc. on when making sharedinstall; install getpath.c
Guido van Rossum [Mon, 7 Aug 1995 21:58:40 +0000 (21:58 +0000)] 
pass prefix etc. on when making sharedinstall; install getpath.c

30 years agoadded sys.std files, read-only open, reload
Guido van Rossum [Mon, 7 Aug 1995 20:19:27 +0000 (20:19 +0000)] 
added sys.std files, read-only open, reload

30 years agoadd splitdrive()
Guido van Rossum [Mon, 7 Aug 1995 20:17:55 +0000 (20:17 +0000)] 
add splitdrive()

30 years agopass the command to sh -c
Guido van Rossum [Mon, 7 Aug 1995 20:17:23 +0000 (20:17 +0000)] 
pass the command to sh -c

30 years agocorrect typo (persis*ent)
Guido van Rossum [Mon, 7 Aug 1995 20:16:58 +0000 (20:16 +0000)] 
correct typo (persis*ent)

30 years agouse new "single" compile option
Guido van Rossum [Mon, 7 Aug 1995 20:16:05 +0000 (20:16 +0000)] 
use new "single" compile option

30 years agomake sure os.environ exists (maybe empty)
Guido van Rossum [Mon, 7 Aug 1995 20:15:23 +0000 (20:15 +0000)] 
make sure os.environ exists (maybe empty)

30 years agoadd seekable option to __init__
Guido van Rossum [Mon, 7 Aug 1995 20:13:56 +0000 (20:13 +0000)] 
add seekable option to __init__

30 years agouse mimetools; add close()
Guido van Rossum [Mon, 7 Aug 1995 20:13:02 +0000 (20:13 +0000)] 
use mimetools; add close()

30 years agoadded parse_qs(query_string)
Guido van Rossum [Mon, 7 Aug 1995 20:12:09 +0000 (20:12 +0000)] 
added parse_qs(query_string)

30 years agonew formatter module; redid htmllib module to use it
Guido van Rossum [Mon, 7 Aug 1995 20:07:44 +0000 (20:07 +0000)] 
new formatter module; redid htmllib module to use it

30 years agoInitial revision
Guido van Rossum [Mon, 7 Aug 1995 20:07:36 +0000 (20:07 +0000)] 
Initial revision

30 years agoUse binascii module for inner loop
Jack Jansen [Mon, 7 Aug 1995 14:37:38 +0000 (14:37 +0000)] 
Use binascii module for inner loop

30 years agoImplement binhex protocol.
Jack Jansen [Mon, 7 Aug 1995 14:36:51 +0000 (14:36 +0000)] 
Implement binhex protocol.

Note: binhex works, hexbin does not work yet.

30 years agoBetter error messages wrt missing resources and preferences
Jack Jansen [Mon, 7 Aug 1995 14:36:06 +0000 (14:36 +0000)] 
Better error messages wrt missing resources and preferences

30 years agoAdded binascii
Jack Jansen [Mon, 7 Aug 1995 14:35:24 +0000 (14:35 +0000)] 
Added binascii

30 years agoHelper module for uuencode and binhex coders
Jack Jansen [Mon, 7 Aug 1995 14:34:15 +0000 (14:34 +0000)] 
Helper module for uuencode and binhex coders

30 years agoAdded missing walk() function
Jack Jansen [Mon, 7 Aug 1995 14:09:27 +0000 (14:09 +0000)] 
Added missing walk() function

30 years agoAdded interfaces to {Get,Set}FInfo and accompanying objects
Jack Jansen [Mon, 7 Aug 1995 14:04:10 +0000 (14:04 +0000)] 
Added interfaces to {Get,Set}FInfo and accompanying objects

30 years agoMwerks now also has fopenrf
Jack Jansen [Mon, 7 Aug 1995 14:03:14 +0000 (14:03 +0000)] 
Mwerks now also has fopenrf

30 years agoMwerks version of fopenRF.
Jack Jansen [Mon, 7 Aug 1995 14:02:12 +0000 (14:02 +0000)] 
Mwerks version of fopenRF.

30 years agoFix for cfm68k
Jack Jansen [Mon, 7 Aug 1995 14:01:46 +0000 (14:01 +0000)] 
Fix for cfm68k

30 years agoMoved here because it is think-specific
Jack Jansen [Mon, 7 Aug 1995 14:00:08 +0000 (14:00 +0000)] 
Moved here because it is think-specific

30 years agoAdded resource-files to CVS tree, in binhex form
Jack Jansen [Mon, 7 Aug 1995 13:59:16 +0000 (13:59 +0000)] 
Added resource-files to CVS tree, in binhex form

30 years agoPut resource-files under CVS, in binhex form
Jack Jansen [Mon, 7 Aug 1995 13:58:09 +0000 (13:58 +0000)] 
Put resource-files under CVS, in binhex form

30 years agonew sendport() interface; add test() program call
Guido van Rossum [Fri, 4 Aug 1995 04:39:30 +0000 (04:39 +0000)] 
new sendport() interface; add test() program call

30 years agoadded format_* functions (suggestion by Ken M)
Guido van Rossum [Fri, 4 Aug 1995 04:30:30 +0000 (04:30 +0000)] 
added format_* functions (suggestion by Ken M)

30 years agosubtle changes to relative r\7furl joins
Guido van Rossum [Fri, 4 Aug 1995 04:29:32 +0000 (04:29 +0000)] 
subtle changes to relative r\7furl joins

30 years agouse mimetools; add error handling and authentication
Guido van Rossum [Fri, 4 Aug 1995 04:29:05 +0000 (04:29 +0000)] 
use mimetools; add error handling and authentication

30 years agomajor rewrite using different formatting paradigm
Guido van Rossum [Fri, 4 Aug 1995 04:23:30 +0000 (04:23 +0000)] 
major rewrite using different formatting paradigm

30 years agochanged comment parsing
Guido van Rossum [Fri, 4 Aug 1995 04:22:39 +0000 (04:22 +0000)] 
changed comment parsing