summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* -- changed test to work on platforms which have os.popenFredrik Lundh2000-07-271-2/+8
| | | | but no os.fork
* Bump version to 0.9.1pre.Greg Ward2000-07-271-1/+1
|
* Fixed a grab-bag of typos spotted by Rob Hooft.Greg Ward2000-07-279-11/+11
|
* Remove unused 'search_dir()' method.Greg Ward2000-07-271-21/+1
| | | | Comment tweak.
* Fix to call 'library_filename()' instead of the non-existentGreg Ward2000-07-271-3/+5
| | | | 'shared_library_filename()'.
* Typo fix from David Ascher.Greg Ward2000-07-271-1/+1
|
* Comment out a debugging print (spotted by Michael Deegan)Andrew M. Kuchling2000-07-261-1/+1
|
* - changed windows pclose to make sure we don't return before theFredrik Lundh2000-07-261-10/+21
| | | | | underlying process has terminated (bug fix from David Bolen)
* Make mode_t available for the declaration of _getpty().Sjoerd Mullender2000-07-261-1/+1
|
* Patch #100873 - Use registry to find proxies for urllib on Win32Mark Hammond2000-07-261-13/+61
| | | | Note that this patch looks worse than it is - an existing function (getproxies() for all platforms other than Win/Mac) has been moved, renamed and indentation changed, but the body of that function is identical. Windows now allows the environment variables to override the registry.
* Fix UCNs machine with >= 32bit longsJeremy Hylton2000-07-264-56/+144
| | | | | | | originally submitted by Bill Tutt Note: This code is actually going to be replaced in 2.0 by /F's new database. Until then, this patch keeps the test suite working.
* Document tiget{flag,num,str}Andrew M. Kuchling2000-07-261-0/+21
|
* Added wrappers for tiget{flag,num,str}, for querying terminfo capabilitiesAndrew M. Kuchling2000-07-261-0/+47
|
* added test case for fixed duplicate arguments bug in Python/compile.cPeter Schneider-Kamp2000-07-252-0/+17
|
* Add entries for the distutils documents to the directories table.Fred Drake2000-07-251-0/+2
|
* This script demonstrates use of the visitor interface of the compilerJeremy Hylton2000-07-251-0/+38
| | | | package.
* makedirs(), removedirs(): If the tail of the path is empty, do a secondFred Drake2000-07-251-0/+4
| | | | | | split so the logic does not fail in corner cases. This closes bug #407.
* a couple of nits from Patch #100933Jeremy Hylton2000-07-251-2/+2
|
* Use 'void' directly instead of the ANY #define, now that all code is ANSI C.Thomas Wouters2000-07-2511-63/+44
| | | | Leave the actual #define in for API compatibility.
* Modified version of patch #100963 from Mark Favas: has_key() is anAndrew M. Kuchling2000-07-251-5/+5
| | | | ncurses extension, so it's made conditional depending on STRICT_SYSV_CURSES
* Made an error message slightly more useful if select() returns something goofyAndrew M. Kuchling2000-07-251-1/+1
|
* Bug report and partial patch from Michael Deegan <michael@ucc.gu.uwa.edu.au>:Andrew M. Kuchling2000-07-241-4/+4
| | | | | reversed tests resulted in an exception when you supplied the correct number of arguments
* Only use one initialization file for LaTeX2HTML; more recent versions onlyFred Drake2000-07-241-4/+5
| | | | | use the last one specified on the command line instead of all of them. Smaller changes to reflect updated support.
* -- updated to include known problems in SRE 0.9.6Fredrik Lundh2000-07-241-414/+11
| | | | (cf. test/output/test_sre)
* Oops, WaitNextEvent was hand-coded, and it also needed the h->H conversion ↵Jack Jansen2000-07-242-2/+2
| | | | for PyArg_ParseTuple format strings.
* Added more prototypes.Jack Jansen2000-07-243-6/+10
|
* Added PyMac_getscript() which returns the pythonic name of the current ↵Jack Jansen2000-07-241-0/+34
| | | | script. Not ideal and not complete, but good enough for the time being. Idea and most of the code by Fredrik Lund.
* Declare fileno() with prototype if USE_GUSI2 defined. This isn't really the ↵Jack Jansen2000-07-242-0/+10
| | | | right place, but it will have to do for now.
* If any of the builds in a group fails offer to stop the fullbuild process ↵Jack Jansen2000-07-241-0/+9
| | | | and open the failing projects in codewarrior.
* Added a "compile-time" flag PPC_ONLY, if set we make ppc-only applications ↵Jack Jansen2000-07-241-0/+5
| | | | without posting the dialog. This is the normal situation since 1.6alfa (no more 68k support).
* Put in an earlier include of sys/signal.h (within ifdef USE_GUSI) to ↵Jack Jansen2000-07-242-0/+8
| | | | forestal a multiple define.
* Fix small typos and markup consistency nits.Fred Drake2000-07-242-15/+16
|
* Remove unused variable and what looks like an ancient relic of an oldThomas Wouters2000-07-241-7/+0
| | | | version of SSLeay (now known as OpenSSL.)
* Create a new section of pyport.h to hold all external function declarationsThomas Wouters2000-07-245-36/+66
| | | | | | | | | | | | | | for systems that are missing those declarations from system include files. Start by moving a pointy-haired ones from their previous locations to the new section. (The gethostname() one, for instance, breaks on several systems, because some define it as (char *, size_t) and some as (char *, int).) I purposely decided not to include the summary of used #defines like Tim did in the first section of pyport.h. In my opinion, the number of #defines likedly to be used by this section would make such an overview unwieldy. I would suggest documenting the non-obvious ones, though.
* change some occurence of python15.dll to python20.dllPeter Schneider-Kamp2000-07-242-6/+6
| | | | closes patch #100956
* ANSIfy a bit more.Thomas Wouters2000-07-241-1/+1
|
* Fix floattime prototype ((void), not (double))Thomas Wouters2000-07-241-1/+1
|
* ANSIfy some more forward declarations.Thomas Wouters2000-07-248-13/+13
|
* Prototype yet another forward declaration.Thomas Wouters2000-07-241-1/+1
|
* Don't call BringToFront() on the dialog object, but call GetDialogWindow() ↵Jack Jansen2000-07-241-3/+3
| | | | to get a window object.
* ... and yet more ANSIfications...Thomas Wouters2000-07-241-3/+4
|
* ANSIfy yet another hidden function definition.Thomas Wouters2000-07-241-5/+0
|
* Fix typo in previous patch.Thomas Wouters2000-07-241-3/+3
|
* *** empty log message ***Thomas Wouters2000-07-241-3/+3
|
* Remove function-less prototype (old function that was removed ?) thatThomas Wouters2000-07-241-1/+0
| | | | happens to be a C++ reserved word, too.
* Restore TestSkipped exception; appears to have disappeared in last checkin.Fred Drake2000-07-241-3/+20
| | | | | Make both TextFailed and TestSkipped subclasses of Error, which derives from Exception. Docstrings have been added for the exceptions and module.
* First round of curses documentation improvements; correct errors, flesh outEric S. Raymond2000-07-241-109/+170
| | | | entry point descriptions.
* Patch #100926 - Better error messages for socket exceptions on Windows. ↵Mark Hammond2000-07-241-2/+78
| | | | [Slight style differences from posted patch]
* Another missed ansification.Thomas Wouters2000-07-231-4/+1
|
* ANSIfy functions that were hiding inside a macro.Thomas Wouters2000-07-231-1/+1
|