Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Stupid typo in the pthread_t test | Guido van Rossum | 2000-09-24 | 2 | -3/+3 |
| | |||||
* | - don't hang if group id is followed by whitespace (closes bug #114660) | Fredrik Lundh | 2000-09-24 | 3 | -2/+4 |
| | |||||
* | Added first start on SAX 2.0 tests. | Lars Gustäbel | 2000-09-24 | 2 | -0/+198 |
| | |||||
* | Added back missing argument to ignorableWhitespace signature. | Lars Gustäbel | 2000-09-24 | 1 | -1/+1 |
| | |||||
* | Bug fix to namespace handling in XMLGenerator (now adds declarations). | Lars Gustäbel | 2000-09-24 | 1 | -5/+13 |
| | | | | | Bug fixes to XMLFilterBase (wrong ignorableWhitespace signature and did not inherit set*Handler methods from XMLReader.) | ||||
* | Fixes for Python 1.6 compatibility - socket bind and connect get a | Nicholas Riley | 2000-09-24 | 1 | -2/+2 |
| | | | | tuple instead two arguments. | ||||
* | Change for Python 1.6 compatibility - UNIX's 'os' module defines | Nicholas Riley | 2000-09-24 | 1 | -16/+15 |
| | | | | 'spawnv' now, so we check for 'fork' first. | ||||
* | Conform to the Python style guide. | Fred Drake | 2000-09-24 | 2 | -362/+367 |
| | |||||
* | Conform more closely with the Python style guide. | Fred Drake | 2000-09-23 | 1 | -11/+11 |
| | |||||
* | Added explanation of the use of the first program argument passed to the | Fred Drake | 2000-09-23 | 1 | -0/+9 |
| | | | | exec*() family of functions. | ||||
* | Change the name of the exception from "pyexpat.error" to | Fred Drake | 2000-09-23 | 1 | -12/+13 |
| | | | | | | | | "xml.parsers.expat.error", so it will reflect the public name of the exception rather than the internal name. Also change some of the initialization to use the new PyModule_Add*() convenience functions. | ||||
* | Use the public name for the Expat parser; "pyexpat" is deprecated. | Fred Drake | 2000-09-23 | 1 | -11/+7 |
| | |||||
* | Rename the public interface from "pyexpat" to "xml.parsers.expat". | Fred Drake | 2000-09-23 | 2 | -36/+34 |
| | |||||
* | Add a wrapper around the pyexpat module, making the "public" name of | Fred Drake | 2000-09-23 | 1 | -0/+4 |
| | | | | the module "xml.parsers.expat". | ||||
* | Added warnings about platform vagaries to the strptime() documentation. | Fred Drake | 2000-09-23 | 1 | -1/+9 |
| | | | | This closes SourceForge bug #115146. | ||||
* | Fix for SF bug 110624: float literals behave inconsistently. | Tim Peters | 2000-09-23 | 1 | -16/+44 |
| | | | | | | | | | | | | | | | | | | | | | | | | I fixed the specific complaint but left the (many) large issues untouched. See the (very long) bug report discussion for why: http://sourceforge.net/bugs/?func=detailbug&group_id=5470&bug_id=110624 Note that while I left the interface to the undocumented public API function PyFloat_FromString alone, its 2nd argument is useless. From a comment block in the code: RED_FLAG 22-Sep-2000 tim PyFloat_FromString's pend argument is braindead. Prior to this RED_FLAG, 1. If v was a regular string, *pend was set to point to its terminating null byte. That's useless (the caller can find that without any help from this function!). 2. If v was a Unicode string, or an object convertible to a character buffer, *pend was set to point into stack trash (the auto temp vector holding the character buffer). That was downright dangerous. Since we can't change the interface of a public API function, pend is still supported but now *officially* useless: if pend is not NULL, *pend is set to NULL. | ||||
* | Added documentation for the new PyModule_*() convenience functions. | Fred Drake | 2000-09-23 | 1 | -0/+26 |
| | | | | This closes SourceForge patch #101233. | ||||
* | Andrew Kuchling <akuchlin@mems-exchange.org>: | Fred Drake | 2000-09-23 | 2 | -0/+31 |
| | | | | | | | Add three new convenience functions to the PyModule_*() family: PyModule_AddObject(), PyModule_AddIntConstant(), PyModule_AddStringConstant(). This closes SourceForge patch #101233. | ||||
* | Split 'run()' up into 'build()', 'install()', and 'bytecompile()' (for | Greg Ward | 2000-09-23 | 1 | -8/+28 |
| | | | | easier extensibility). | ||||
* | Whitespace tweaks. | Greg Ward | 2000-09-23 | 1 | -35/+32 |
| | |||||
* | Reformat docstrings. | Greg Ward | 2000-09-23 | 1 | -65/+63 |
| | | | | Standardize use of whitespace on function calls. | ||||
* | mkcwproject now works, but for one thing: the import of the XML document as ↵ | Jack Jansen | 2000-09-22 | 4 | -10/+16 |
| | | | | a project through AppleEvents. | ||||
* | Test files for mkcwproject | Jack Jansen | 2000-09-22 | 2 | -0/+223 |
| | |||||
* | More bits and pieces of project generation. | Jack Jansen | 2000-09-22 | 5 | -10/+119 |
| | |||||
* | Fix some long/"l" int/"i" mismatches. Fixes bug #113779. | Neil Schemenauer | 2000-09-22 | 1 | -2/+2 |
| | |||||
* | Keepconsole is now a 4-way option: never/errorexit/unseen output/always. ↵ | Jack Jansen | 2000-09-22 | 8 | -46/+97 |
| | | | | Default is "unseen output". Upped the Popt version number. | ||||
* | Poke-and-hope attempt to fix Bugs #115006 and #114324: fix the test | Guido van Rossum | 2000-09-22 | 2 | -5/+5 |
| | | | | | for pthread_t (to calculate its size) to work even if pthread_t is a struct. | ||||
* | Maildir.__init__(): Use the correct filter for filenames, so that this | Fred Drake | 2000-09-22 | 1 | -7/+4 |
| | | | | class conforms to the maildir specification. | ||||
* | Added refcount information for the *_InPlace*() API series. | Fred Drake | 2000-09-22 | 1 | -0/+53 |
| | | | | This closes SourceForge bug #114287. | ||||
* | PyNumber_Coerce() returns an int, not a PyObject *. | Fred Drake | 2000-09-22 | 1 | -1/+1 |
| | |||||
* | Fix the way we found relevant cfuncdesc lines; PREFIX was not a regular | Fred Drake | 2000-09-22 | 1 | -7/+10 |
| | | | | expression! | ||||
* | It's better to test for __hpux rather than __hppa, and hpux or hppa is | Guido van Rossum | 2000-09-22 | 1 | -1/+1 |
| | | | | unnecessary. Sez edg@SF | ||||
* | use_sans_serif(), | Fred Drake | 2000-09-22 | 1 | -10/+7 |
| | | | | | | | | | | | | use_italics(): Remove both functions, inlining use_italics() at its only call site. init_myformat(): Uncomment line so that some internal markup does not get generated, since it is not properly removed later. (Fix on aspect of SourceForge bug #114749.) Modified call to process_commands_wrap_deferred(), removing \code from the list since it had a bad interaction with other changes in some contexts. | ||||
* | Update versioning for the next Python release. | Fred Drake | 2000-09-22 | 1 | -2/+2 |
| | |||||
* | Update RELEASE for the next Python release. | Fred Drake | 2000-09-22 | 1 | -1/+1 |
| | |||||
* | Change HP=UX compiler options from -Aa to -Ae, which implies | Guido van Rossum | 2000-09-22 | 2 | -9/+9 |
| | | | | | | | | -D_HPUX_SOURCE and also turns on long long support. Suggestion by stnor@sweden.hp.com (Stefan Norberg). Please test this if you have access to HP-UX!!! | ||||
* | Hopefully fix the problem with undeclared fdatasync() on HP-UX that | Guido van Rossum | 2000-09-22 | 1 | -0/+5 |
| | | | | | | | was reported twice so far. Someone with access to HP-UX, please test this! (Is '__hppa' or 'hppa' really the correct symbol to test for?) | ||||
* | Fix some minor nits about the use of \optional in parameter lists. | Fred Drake | 2000-09-22 | 1 | -4/+4 |
| | |||||
* | Address Bug #115057: add a --with-suffix option to set the EXE | Guido van Rossum | 2000-09-22 | 4 | -336/+363 |
| | | | | | variable in the Makefiles from the configure script. Usefil for Cygwin and Mac OS X builds. | ||||
* | - plug a memory leak due to circular lists | Neil Schemenauer | 2000-09-22 | 1 | -0/+3 |
| | |||||
* | - Replace debugleak flag with findleaks flag. The new SAVEALL GC option is | Neil Schemenauer | 2000-09-22 | 1 | -6/+14 |
| | | | | used to find cyclic garbage produced by tests. | ||||
* | - Add test for new SAVEALL debugging flag | Neil Schemenauer | 2000-09-22 | 1 | -31/+92 |
| | | | | | - Use exceptions rather than asserts for failing tests. - Reorganize tests and produce some output if verbose option is set. | ||||
* | - Add DEBUG_SAVEALL option. When enabled all garbage objects found by the | Neil Schemenauer | 2000-09-22 | 2 | -29/+49 |
| | | | | | | | collector will be saved in gc.garbage. This is useful for debugging a program that creates reference cycles. - Fix else statements in gcmodule.c to conform to Python coding standards. | ||||
* | When PyInt_FromLong() returns NULL, you do not need to check | Fred Drake | 2000-09-22 | 1 | -4/+2 |
| | | | | | PyErr_Occurred(). Removed the extra test and setting of a bogus exception. | ||||
* | Contributed modules by Riccardo Trocca. Extended pixmap wrapper, NumPy ↵ | Jack Jansen | 2000-09-22 | 4 | -0/+614 |
| | | | | visualiser and QuickTime to images. | ||||
* | Allow lists of files/fsspecs as the source for copy() and move(). By | Jack Jansen | 2000-09-22 | 1 | -2/+12 |
| | | | | Bill Bedford, slightly edited by me. | ||||
* | Implemented new os.startfile function, unique to Windows, exposing a | Tim Peters | 2000-09-22 | 4 | -5/+39 |
| | | | | | | | | | | | | | | | | subset of Win32 ShellExecute's functionality. Guido wants this because IDLE's Help -> Docs function currently crashes his machine because of a conflict between his version of Norton AntiVirus (6.10.20) and MS's _popen. Docs for startfile are being mailed to Fred (or just read the docstring -- it tells the whole story). Changed webbrowser.py to use os.startfile instead of os.popen on Windows. Changed IDLE's EditorWindow.py to pass an absolute path for the docs (hardcoding ShellExecute's "directory" arg to "." as used to be done let IDLE work, but made the startfile command exceedingly obscure for other uses -- the MS docs are terrible, of course, & still not sure I understand it). Note that Windows Python must link with shell32.lib now! That's where ShellExecute lives. | ||||
* | More whitespace cleanup, to satisfy tabnanny.py. Don't trust -tt! | Guido van Rossum | 2000-09-22 | 1 | -15/+15 |
| | |||||
* | Get rid of the one tab in the file. | Guido van Rossum | 2000-09-22 | 1 | -1/+1 |
| | | | | Closes Bug #115054. | ||||
* | Fix for SF bug 115051: Dodgy use of PyTuple_SET_ITEM in pyexpat.c | Tim Peters | 2000-09-22 | 1 | -2/+1 |
| |