Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | added a few more __all__ lists | Skip Montanaro | 2001-01-23 | 9 | -1/+26 |
| | | | | fixed typo in ihooks docstring | ||||
* | Jeremy didn't write PEP 205, Fred did! | Andrew M. Kuchling | 2001-01-23 | 1 | -1/+1 |
| | |||||
* | Sigh... First test before committing. InvalWindowRect and friends are window ↵ | Jack Jansen | 2001-01-23 | 14 | -48/+55 |
| | | | | object methods. Fixed. | ||||
* | Replaced InvalRect and friends with the Carbon-compliant InvalWindowRect. | Jack Jansen | 2001-01-23 | 3 | -6/+6 |
| | |||||
* | Replaced InvalRect and friends with the Carbon-compliant InvalWindowRect. | Jack Jansen | 2001-01-23 | 15 | -48/+48 |
| | |||||
* | Expose the autoraise capability. Improve the documentation. | Eric S. Raymond | 2001-01-23 | 2 | -27/+29 |
| | |||||
* | Oops...finish a mangled sentence. | Eric S. Raymond | 2001-01-23 | 1 | -1/+1 |
| | |||||
* | Rewrite webbrowser.py to fix various bugs following Ka-Ping Yee's | Eric S. Raymond | 2001-01-23 | 2 | -182/+247 |
| | | | | | | | | complaints. The new version moves most of its initialization to package load time; it's simpler, faster, smaller, and adds support for Mozilla and Links. Interpretation of the BROWSER variable now works and is documented. The open_new entry point and methods are marked "deprecated; may be removed in 2.1". | ||||
* | Restore alphabetic order. Also try to import rlcompleter and curses, but | Tim Peters | 2001-01-23 | 1 | -7/+15 |
| | | | | don't fail if they're not available. | ||||
* | Added notes about setup.py and cygwin build; removed note about | Guido van Rossum | 2001-01-23 | 1 | -5/+12 |
| | | | | the previous auto-configuring modules feature (already obsolete :-). | ||||
* | Add introductory note about this article's draft status | Andrew M. Kuchling | 2001-01-23 | 1 | -14/+56 |
| | | | | | | Grammatical and typographic fixes from David Goodger Expanded notes about PEP 229 Removed user-visible XXXes; they're in comments now | ||||
* | Added -O option (to run python or python_d w/ -O), | Tim Peters | 2001-01-23 | 1 | -8/+14 |
| | |||||
* | This commit was manufactured by cvs2svn to create tag 'r21a1'.v2.1a1 | cvs2svn | 2001-01-23 | 1 | -0/+1 |
| | |||||
* | Clean up some comments and the default VERSION. | Guido van Rossum | 2001-01-23 | 1 | -3/+2 |
| | |||||
* | Get rid of weird @SET_CXX@ and @SET_DLLLIBRARY@ macro occurrences. | Guido van Rossum | 2001-01-23 | 1 | -2/+2 |
| | |||||
* | Get rid of weird @SET_CXX@ macro occurrence. | Guido van Rossum | 2001-01-23 | 1 | -3/+2 |
| | |||||
* | Change SET_DLLLIBRARY to DLLLIBRARY=... | Guido van Rossum | 2001-01-23 | 1 | -1/+1 |
| | |||||
* | The usual | Guido van Rossum | 2001-01-23 | 1 | -392/+357 |
| | |||||
* | Fix some make errors during "make clobber" or "make distclean", caused | Guido van Rossum | 2001-01-23 | 1 | -38/+4 |
| | | | | | | | by weird and (hopefully) unnecessary SET_CXX and SET_DLLLIBRARY macros that occurr at the start of Makefile.in files. - Also removed the already-commented-out SET_CCC macro cruft. | ||||
* | Add simple test of list comprehension that uses a name that isn't | Jeremy Hylton | 2001-01-23 | 2 | -0/+7 |
| | | | | | otherwise used in the same code block. (Not sure this is the right place, but there is no test_list_comprehensions.py.) | ||||
* | Use PyThreadState_DeleteCurrent() instead of PyThreadState_Delete() | Guido van Rossum | 2001-01-23 | 1 | -2/+1 |
| | | | | | | | and PyEval_ReleaseThread(). This fixes SF bug #125673 PyThreadState_Delete: invalid tstate (Unix only?). | ||||
* | Add a new API, PyThreadState_DeleteCurrent() that combines | Guido van Rossum | 2001-01-23 | 2 | -4/+30 |
| | | | | | PyThreadState_Delete() and PyEval_ReleaseLock(). It is only defined if WITH_THREAD is defined. | ||||
* | Visit the initial test element of the listmaker for a list | Jeremy Hylton | 2001-01-23 | 1 | -1/+2 |
| | | | | comprehension. Fixes bug reported by Tim Peters. | ||||
* | prevent symtable_params() from dereferencing off the end of the | Jeremy Hylton | 2001-01-23 | 1 | -0/+2 |
| | | | | varagslist node. based on fix from Thomas Wouters. | ||||
* | A few more contributors. | Guido van Rossum | 2001-01-23 | 1 | -0/+4 |
| | |||||
* | - Use "exec ... in dict" to avoid having to walk on eggshells; locals | Guido van Rossum | 2001-01-22 | 1 | -14/+20 |
| | | | | | | | | | no don't have to start with underscore. - Add spaces after commas in argument lists. - Only test dbhash if bsddb can be imported. (Wonder if there are more like this?) | ||||
* | Typo repair. | Tim Peters | 2001-01-22 | 1 | -1/+1 |
| | |||||
* | Reorganize pickle/cPickle testing so the tests pass regardless of the order | Tim Peters | 2001-01-22 | 4 | -170/+157 |
| | | | | they're run. | ||||
* | A variety of updates of out-of-date information. | Fred Drake | 2001-01-22 | 1 | -21/+29 |
| | |||||
* | When generating the source package, copy in the LICENSE file from the main | Fred Drake | 2001-01-22 | 1 | -4/+6 |
| | | | | source directory. | ||||
* | Never mind ignoring a copied LICENSE file; let's do this another way. | Fred Drake | 2001-01-22 | 1 | -1/+0 |
| | |||||
* | Ignore the generated LICENSE file needed for the documentation source | Fred Drake | 2001-01-22 | 1 | -0/+1 |
| | | | | package. | ||||
* | Change the main targets to generate HTML instead of PostScript. | Fred Drake | 2001-01-22 | 1 | -27/+30 |
| | | | | Update the comments at the beginning of the file. | ||||
* | Added link to the "Python Codecs" project at SourceForge. | Fred Drake | 2001-01-22 | 1 | -8/+18 |
| | | | | | Changed markup of the list of values for the list of meaningful "errors" values. | ||||
* | Added dictionary.popitem() and the improved XML modules. | Andrew M. Kuchling | 2001-01-22 | 1 | -18/+41 |
| | | | | | | | | Reorder the smaller items, roughly in decreasing order of visibility to the Python coder Finished an incomplete sentence. Moved the unwritten sections down to the bottom. Bumped version number and added acknowledgements | ||||
* | The "user" module cannot reasonably be tested. Moved to the end (and | Fred Drake | 2001-01-22 | 1 | -2/+6 |
| | | | | | | commented it out), and added an explanation as to *why*. Added period to docstring. | ||||
* | OK, changed my mind once more on this. The comparison hierarchy is | Guido van Rossum | 2001-01-22 | 1 | -1/+1 |
| | | | | | | | | | | | | | | now None < all numeric types < all other types so that once again map(max, Squares(3), Squares(2)) equals [0, 1, 4] | ||||
* | New special case in comparisons: None is smaller than any other object | Guido van Rossum | 2001-01-22 | 1 | -0/+6 |
| | | | | (unless the object's type overrides this comparison). | ||||
* | Change some wording to make this work with PDF generation -- using a PDF | Fred Drake | 2001-01-22 | 1 | -2/+3 |
| | | | | | | hyperlink at the start of the paragraph confused pdflatex; it saw the link start while still in vertical mode, which is not allowed. Including text before the link forces horizontal mode. | ||||
* | Worked around bug SF #125880: changed the text of three sections that | Fred Drake | 2001-01-22 | 1 | -3/+3 |
| | | | | really nasty TeX source to "bleed" into the PDF "bookmarks". | ||||
* | Clean up the docs for the "random" module according to comments from Tim | Fred Drake | 2001-01-22 | 1 | -90/+71 |
| | | | | | | Peters. This closes SF bug #125919. | ||||
* | Add reference to PEP 232. | Andrew M. Kuchling | 2001-01-22 | 1 | -7/+34 |
| | | | | | | | Use correct flag name Py_TPFLAGS_CHECKTYPES Mention that numeric methods can return Py_NotImplemented (NAS) Mention optional arguments in time modules (TW) Various minor rewrites and additional attributions | ||||
* | Remove the dollar sign from the formatting of environment variables -- | Fred Drake | 2001-01-22 | 1 | -3/+3 |
| | | | | | too Unix-specific, and not really needed. (Already fixed the HTML formatting, but forgot to mention it in the checkin for python.perl 1.94.) | ||||
* | Make "PythonLabs" bold. | Fred Drake | 2001-01-22 | 1 | -1/+1 |
| | |||||
* | Updated note about collection of cyclic garbage, based on comments from | Fred Drake | 2001-01-22 | 1 | -3/+6 |
| | | | | Chris Ryland. | ||||
* | Minor markup adjustment. | Fred Drake | 2001-01-22 | 1 | -2/+1 |
| | |||||
* | Fix \seepep handling -- correct URL to the online PEP repository on SF is | Fred Drake | 2001-01-22 | 1 | -27/+39 |
| | | | | | | | | | | | | now generated. (SF bug #129692.) Patch from Anthon van der Neut <anthon@mnt.org>: Work around the removal of content-less paired tags used for name anchors in some places. (SF bug #116008.) Move some class attributes from an artificial SPAN element to otherwise "useful" elements that are being generated anyway. Added the class "versionnote", used for \deprecated, \versionadded, \versionchanged. | ||||
* | Remove include-file-dependant half-prototype of clnt_create(). | Thomas Wouters | 2001-01-22 | 1 | -3/+0 |
| | |||||
* | Regenerated (shoulnd't make a difference). | Jack Jansen | 2001-01-22 | 23 | -69/+78 |
| | |||||
* | Unicodedatabase.c has gone. | Jack Jansen | 2001-01-22 | 6 | -7/+0 |
| |