summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Added USE_APPEARANCE flag.Jack Jansen1999-12-093-0/+3
|
* Document the new stuff in the os module.Fred Drake1999-12-091-2/+47
|
* Added support for ctermid, tempnam, tmpfile, tmpnam, and tmpnam_r.Fred Drake1999-12-093-107/+127
|
* Added support for abort(), ctermid(), tmpfile(), tempnam(), tmpnam(),Fred Drake1999-12-091-163/+326
| | | | | | | | | and TMP_MAX. Converted all functions that used PyArg_Parse() or PyArg_NoArgs() to use PyArg_ParseTuple() and specified all function names using the :name syntax in the format strings, to allow better error messages when TypeError is raised for parameter type mismatches.
* Changes by Corran Webster to support {Get,Set}ControlData andJack Jansen1999-12-092-12/+132
| | | | HandleControlClick. Untested.
* Minimal test of Dlg.SetControlData by Corran Webster: draw a defaultJack Jansen1999-12-091-0/+13
| | | | ring around a button. Mainly here so I can transfer it home:-)
* First bits and pieces of appearance support: an init routine, a global flag ↵Jack Jansen1999-12-076-13/+45
| | | | | | PyMac_AppearanceCompliant (exported thru MacOS). If USE_APPEARANCE is off the code is disabled (but the variables are still there, set to 0).
* OpenSSL support. This is based on patches for a version of SSLeay byGuido van Rossum1999-12-071-1/+7
| | | | | | Brian E Gallew, which were improved and adapted to OpenSSL 0.9.4 by Laszlo Kovacs of HP. Both have kindly given permission to include the patches in the Python distribution. Final formatting by GvR.
* OpenSSL support. This is based on patches for a version of SSLeay byGuido van Rossum1999-12-073-19/+439
| | | | | | Brian E Gallew, which were improved and adapted to OpenSSL 0.9.4 by Laszlo Kovacs of HP. Both have kindly given permission to include the patches in the Python distribution. Final formatting by GvR.
* According to Craig H Rowland, openbsd2 is yet another BSD variant thatGuido van Rossum1999-12-061-0/+2
| | | | uses the BSD version of the lock structure. Sigh, @!%$.
* Added \" to escapes so embedded escaped double quotes are handledBarry Warsaw1999-12-061-0/+1
| | | | correctly. Patch suggested by Mads Kiilerich <mk@solit.dk>.
* Set the finder "is shared" bit, by request of Joe Strout. It seems this ↵Jack Jansen1999-12-031-1/+1
| | | | | | allows multiple simultaneous copies to be run from a server, and Applets shouldn't write their datafork so it appears safe.
* Allow for 12 arguments max, in stead of 8. Untested.Jack Jansen1999-12-031-6/+9
|
* Correct the docstring for byteswap(); error noted by Bernhard ReiterFred Drake1999-12-031-4/+9
| | | | | | | <bernhard@uwm.edu>. Added a check that no parameters were passed to byteswap(); previously allowed any parameters you happened to pass.
* [from 1999-11-04]Greg Ward1999-12-031-5/+14
| | | | | | | | Bunch of little bug fixes that appeared in building non-packagized distributions. Mainly: - brain-slip typo in 'get_package_dir()' - don't try to os.path.join() an empty path tuple -- it doesn't like it - more type-safety in 'build_module()'
* Default schedparams set to (0,0): no event-intervention by Python mainloop. ThisJack Jansen1999-12-031-2/+2
| | | | | was always meant to be the default, and the new example-2 was pretty critical of this.
* Standalone.html is long obsolete. Added description of BuildApplicationJack Jansen1999-12-033-89/+59
| | | | process to freezing.html.
* New examples by Tony Ingraldi, using dns-lookup in stead of the funny interslipJack Jansen1999-12-0312-333/+241
| | | | module.
* Give a warning if system-wide sys.argv processing is off (because then weJack Jansen1999-12-021-1/+4
| | | | | may have missed an applet being dropped on us). This may fix the obscure bug Tony Ingraldi was experiencing.
* Last try, think I got it now.Barry Warsaw1999-12-011-1/+0
|
* Once moreBarry Warsaw1999-12-011-0/+1
|
* Once moreBarry Warsaw1999-12-011-1/+0
|
* Urg!Barry Warsaw1999-12-011-0/+1
|
* more trivial stuff to test CVS -- should be the last?Barry Warsaw1999-12-011-1/+1
|
* testing CVS once moreBarry Warsaw1999-12-011-1/+0
|
* testing CVSBarry Warsaw1999-12-011-0/+1
|
* testing CVSBarry Warsaw1999-12-011-1/+0
|
* testing CVSBarry Warsaw1999-12-011-0/+1
|
* testing CVSBarry Warsaw1999-12-011-1/+0
|
* Minor change to test new CVS reportingBarry Warsaw1999-12-011-0/+1
|
* Minor change to test new CVS reportingBarry Warsaw1999-12-011-1/+1
|
* Minor change to test new CVS reportingBarry Warsaw1999-12-011-1/+0
|
* Minor change to test new CVS reportingBarry Warsaw1999-12-011-1/+1
|
* Minor change to test new CVS reportingBarry Warsaw1999-12-011-1/+0
|
* Minor change to test new CVS reportingBarry Warsaw1999-12-011-0/+4
|
* Minor change to test new CVS reportingBarry Warsaw1999-12-011-1/+1
|
* Update link to PythonWare library page.Fred Drake1999-12-011-2/+2
|
* In abspath(), always use normpath(), even when win32api is availableGuido van Rossum1999-11-301-3/+3
| | | | | (and even when it fails). This avoids the problem where a trailing separator is not removed when win32api.GetFullPathName() is used.
* A bunch of docstring fixes.Barry Warsaw1999-11-281-23/+22
|
* look for builtins before stuff on the path.Greg Stein1999-11-241-1/+1
|
* add loading of dynamic library modules.Greg Stein1999-11-241-4/+18
|
* rewrite_descriptor(): Fixup conversion of arguments (simpler).Fred Drake1999-11-231-12/+35
| | | | | | | | join_adjacent_elements(): Hack to merge adjacent instances of <option>; the source \programopt with GNU-style long options created problems with LaTeX2HTML; this removes the evil workaround, which should never be necessary from structured documents(!).
* Don't rename \var to <varname>; DocBook is too verbose here.Fred Drake1999-11-231-4/+9
| | | | | | | | Do adopt DocBook's <command>, <option>, <envar> names for \program, \programopt, \envvar. Add \filenq --> <filename quote="no"> (it has to go somewhere, at least for now).
* turn SysPathImporter into PathImporter.Greg Stein1999-11-201-6/+7
|
* remove the __version__ global.Greg Stein1999-11-201-2/+0
|
* only put __path__ into package modules.Greg Stein1999-11-201-2/+1
|
* shift code from DirectoryImporter out to a common area.Greg Stein1999-11-201-64/+231
| | | | | | | | | | | remove use of "os" module (bootstrap issues) and go to the underlying platform-specific modules fix problem in _compile() (trapped wrong error on permission issues) add SysPathImporter and BuiltinImporter put __file__ into modules imported from the filesystem. [backwards compat] put __path__ into modules [backwards compat] oops: it is doing this for all modules, not just packages. comment and tweak to the PackageArchiveImporter
* Moved all the imports to the top.Fred Drake1999-11-191-9/+5
| | | | | | | Use the methods on the AST object instead of module-level functions; these have been implemented for a couple of versions now, and are already used in the module documentation in preference to the functions.
* Set the date and version to reflect the actual status, not the lastFred Drake1999-11-181-2/+2
| | | | released status. Has to be changed just before publishing anyway.
* When generating the top-level index to the documents, make sure someFred Drake1999-11-181-1/+3
| | | | | | oddball things from the LaTeX get translated to rational values. This is mostly to keep things from looking broken in a development tree when they're not.