summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add MALLOC_ZERO_RETURNS_NULL symbol.Guido van Rossum1997-07-102-0/+6
|
* Added check whether malloc(0) returns NULL or not.Guido van Rossum1997-07-102-1/+81
|
* Only add 1 byte to all malloc calls when it is known that malloc(0) orGuido van Rossum1997-07-101-3/+11
| | | | | realloc(p, 0) returns NULL. See changes to configure script to be checked in later.
* Straight from Jeffrey Ollie's web page.Guido van Rossum1997-07-101-0/+1137
|
* Fix problem discovered by Greg McFarlane: when an imported moduleGuido van Rossum1997-07-101-0/+7
| | | | | | | | | replaces its own entry in sys.module, reference count errors ensue; even if there is no reference count problem, it would be preferable for the import to yield the new thing in sys.modules anyway (if only because that's what later imports will yield). This opens the road to an official hack to implement a __getattr__ like feature for modules: stick an instance in sys.modules[__name__].
* (py-shell): Remove support for Emacs 18, implicitly add support forBarry Warsaw1997-07-101-15/+7
| | | | Emacs 20, and bind TAB key to self-insert-command in *Python* process.
* Two improvements suggested by Tim Peters: speed up random() since weGuido van Rossum1997-07-101-8/+5
| | | | | know Python integers are at least 32 bits long; and avoid zeros in initial seed value.
* New versions straight from Jeffrey Ollie's web siteGuido van Rossum1997-07-103-169/+700
|
* Fix bug reported by Just: anonymous arguments used for tuples shouldGuido van Rossum1997-07-101-1/+3
| | | | | | have a unique name, otherwise they get squished by locals2fast (or fast2locals, I dunno) when the debugger is invoked before they have been transferred to real locals.
* Wrapped up the ~/.netrc support. This is basically just the changes Guido &Fred Drake1997-06-241-6/+27
| | | | I discussed to the original version way-back-when.
* fixed typo, "header" ==> "headers"Fred Drake1997-06-202-2/+2
|
* Mods for user mainloop event handlingJack Jansen1997-06-201-2/+3
|
* Added dopendingevents callJack Jansen1997-06-201-0/+31
| | | | Added asyncevents call to enable asynchronous event handling
* Allow specifying own resources for all dialogsJack Jansen1997-06-201-7/+15
| | | | Allow changing labels on yesnocancel dialog
* Module to buffer stdout/stderr until stdin is read. Useful forJack Jansen1997-06-201-0/+110
| | | | | windowing programs, together with option to keep console window closed until needed.
* RegeneratedJack Jansen1997-06-203-3/+3
|
* added SetEventHandlerJack Jansen1997-06-201-12/+25
|
* Adapted to new event handling. It is now also possible to abort out ofJack Jansen1997-06-202-2/+12
| | | | an AESend with command-. (unless specifically disabled, of course).
* Added PyMac_SetEventHandler which allows you to replace complete eventJack Jansen1997-06-201-43/+71
| | | | | | handling in inner loop with python code. Also move (previously machine independent) PyErr_CheckSignals here, so we can propagate exceptions in event handling code.
* Added NewAliasMinimalFromFullPath(), and allow alias.Resolve() to returnJack Jansen1997-06-161-1/+28
| | | | an FSSpec to a non-existing file.
* MACDEPPATH: Remove `sharedmodules' from default value of this variableBarry Warsaw1997-06-131-1/+1
| | | | | | since calculate_path() in getpath.c will automatically add this. Including this here will put the sharedmodules directory on sys.path twice.
* Added docstrings by Sue Williams, re-indented to 4 spaces / level.Fred Drake1997-06-121-20/+44
|
* Fix LaTeX bug found by examining the docstrings added to commands.py.Fred Drake1997-06-122-2/+2
|
* Added libcommands.tex to list of library reference dependencies.Fred Drake1997-06-121-1/+1
|
* Documentation for Lib/commands.py, from Sue Williams.Fred Drake1997-06-124-2/+100
|
* Make imports faster on the Mac, byJack Jansen1997-06-122-8/+106
| | | | | | | | - Remembering whether sys.path components refer to files or folders, - Using mac-specific code to check for file existence, in stead of trying to fopen() each possible file. These mods need an accompanying mod to import.c.
* Added prototype for PyMac_RestoreMenuBarJack Jansen1997-06-121-0/+1
|
* Replaced MacOS.EnableAppSwitch with MacOS.SchedParamsJack Jansen1997-06-122-5/+5
|
* Added optional preload arg to some routines (which creates reloadedJack Jansen1997-06-121-5/+9
| | | | resources when set)
* Replaced MacOS.EnableAppswitch by MacOS.SchedParamsJack Jansen1997-06-124-6/+6
|
* - Restore SIOUX menubar just before exiting, if the console window is keptJack Jansen1997-06-122-21/+27
| | | | | open (so the user can quit with cmd-Q, print, etc) - Removed a few unused routines
* Really nitty-gritty change to prevent latex2html from using a LaTeX-generatedFred Drake1997-06-062-2/+2
| | | | image of the argument list....
* Add sys/types.h include for pid_t when threading.Guido van Rossum1997-06-061-0/+1
|
* Allow oct() result for 64-bit machines.Guido van Rossum1997-06-061-1/+2
|
* Use cPickle and cStringIO when available.Guido van Rossum1997-06-061-20/+30
|
* Clear the ftp cache when it contains more than 10 entries.Guido van Rossum1997-06-061-2/+21
|
* Catch *all* errors that ftplib can raise (ftplib.all_errors) ratherGuido van Rossum1997-06-061-8/+10
| | | | | | than just the four. Also folded some long lines.
* Moved the definition of posix_times__doc__ to outside of #ifdef HAVE_TIMESRoger E. Masse1997-06-051-3/+3
| | | | so that MSVC 4.2 doesn't complain under NT.
* Changed the reference of 'mappingobject.c' to 'dictobject.c'Roger E. Masse1997-06-051-162/+125
|
* Small changes (casts etc.) by Jack, for Mac compilation.Guido van Rossum1997-06-031-12/+16
|
* Doc strings (AMK).Guido van Rossum1997-06-031-11/+88
|
* Correct typo in last line (test program invocation).Guido van Rossum1997-06-031-1/+1
|
* Added a variant of the epilogue that has the PythonPowered logo.Guido van Rossum1997-06-031-0/+12
|
* Move the second import of faqcust to the very end.Guido van Rossum1997-06-031-8/+8
|
* AMK's regex test suiteGuido van Rossum1997-06-032-0/+331
|
* Use #include "mymath.h" instead of declaring fabs() explicitly.Guido van Rossum1997-06-031-2/+1
| | | | This should solve a weird problem on the Mac for Jack.
* socket_type --> SocketTypeFred Drake1997-06-031-1/+1
|
* Added zlibJack Jansen1997-06-031-0/+2
|
* Added USE_ZLIB to nonshared config filesJack Jansen1997-06-033-0/+3
|
* Removed SetScheduleTimesJack Jansen1997-06-031-26/+66
| | | | | Added SchedParams Added docstrings for most routines