summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Bump version numbers.Fred Drake2003-07-172-2/+2
|
* - improve the description of how user-defined methodFred Drake2003-07-171-25/+85
| | | | | | | | objects get made - improve the description of attribute retrieval from classes and class instances - add brief documentation of static method and class method objects.
* Note that Unicode strings are now supported in sys.path.Fred Drake2003-07-171-0/+2
| | | | SF patch #764594.
* Make the howto document class work properly with the pypaper.styFred Drake2003-07-171-1/+1
| | | | | paper-size hook. SF patch #772550.
* Remove code that tried to warn about shadowing builtin names after aNeil Schemenauer2003-07-161-6/+0
| | | | module had been compiled. It gives too many spurious warnings.
* Remove code that tried to warn about shadowing builtin names after aNeil Schemenauer2003-07-161-66/+1
| | | | module had been compiled. It gives too many spurious warnings.
* Zap the C API subsection altogether for now. It's not actually usable fromSkip Montanaro2003-07-161-58/+0
| | | | C yet anyway.
* Mention list.index; more small textual changesAndrew M. Kuchling2003-07-161-26/+30
|
* Add reminder list of things to document; mention sys.getcheckinterval() and ↵Andrew M. Kuchling2003-07-161-1/+9
| | | | socket.timeout exception
* Add mmap bugfix; typo and grammar fixesAndrew M. Kuchling2003-07-161-3/+5
|
* expose the C API subsection which was hidden from LaTeX in a comment. InSkip Montanaro2003-07-161-22/+27
| | | | | | | | | | | the info conversion the \comment LaTeX macro mapped to a Texinfo @ignore macro. Unfortunately, py2texi.el is not smart enough to avoid generating links to the @ignore'd section, which causes makeinfo to croak. Exposing this text is probably not the most correct thing to do, as this documentation really belongs in the C API manual. This does get the info files generated, however, which is a more practical goal considering the impending release of 2.3rc1.
* Clarify the lack of relationship between rich comparison operators.Raymond Hettinger2003-07-161-0/+5
| | | | Prompted by a discussion on comp.lang.python.
* Doctest now examines all docstrings by default. Previously, it wouldRaymond Hettinger2003-07-163-25/+44
| | | | | | | | | | | | skip over functions with private names (as indicated by the underscore naming convention). The old default created too much of a risk that user tests were being skipped inadvertently. Note, this change could break code in the unlikely case that someone had intentionally put failing tests in the docstrings of private functions. The breakage is easily fixable by specifying the old behavior when calling testmod() or Tester(). The more likely case is that the silent failure was unintended and that the user needed to be informed so the test could be fixed.
* Lots of markup cleanups to avoid warnings from the GNU info generation;Fred Drake2003-07-163-23/+23
| | | | these make sense even without that processing chain.
* Remove \versionchanged; the text was too complex for the GNU infoFred Drake2003-07-161-4/+4
| | | | | conversion to support. Keep the content as normal content, with a note that this applies starting in Python 2.3.
* Remove stray comments.Jeremy Hylton2003-07-161-1/+0
|
* Remove unnecessary check in tests for slots allowed.Jeremy Hylton2003-07-161-1/+1
| | | | | | | The !PyType_Check(base) check snuck in as part of rev 2.215, but was unrelated to the SF patch that is mentioned in the checkin comment. The test is currently unnecessary because base is set to the return value of best_bases(), which returns a type or NULL.
* Minor text changes; update bug/patch count (quite a jump!)Andrew M. Kuchling2003-07-161-18/+18
|
* Make it easier to figure out the where a menuselection starts and endsFred Drake2003-07-163-2/+4
| | | | by controling the font.
* Cygwin instructions:Fred Drake2003-07-161-5/+5
| | | | | - added missing period - added markup so it's easier to tell which names are special
* More pre-2.3 build tweaks for the OS/2 EMX port:Andrew MacIntyre2003-07-164-43/+24
| | | | | | | | | | - more clean up of the generated import library definiton (.DEF file) following checking of patch 770521, and tightening of the sed regexps. - use -O3 even with gcc 2.8.1 - worth nearly 10% with 2.3; worth nothing with 2.2.x. - clean up a couple of whitespace issues introduced by a cut'n'paste.
* A variety of markup-level adjustments.Fred Drake2003-07-161-6/+6
|
* Discussion of signatures for unicode.translate() and str.translate()Raymond Hettinger2003-07-162-10/+10
| | | | | were in the wrong file. Moved out of libstring.tex and into libstdtypes.tex.
* Exercise Jim Fulton's new doctest extension for running doctests in aRaymond Hettinger2003-07-161-2/+5
| | | | | unittest environment. Since his extension finds docstrings in private functions, it exposed a bug in the difflib doctests.
* Fix faulty doctests. There is no results attribute.Raymond Hettinger2003-07-161-5/+6
| | | | | Note, these tests were not getting exercised because doctest skips over private functions.
* Extend last change to cover TestSuites as well as TestCases.Raymond Hettinger2003-07-161-1/+1
|
* - update some commentsFred Drake2003-07-161-9/+21
| | | | | | - add support for the "What's New" document - add short aliases for individual documents; nice for debugging conversions
* Pass along the selected "What's New" document to the make file for theFred Drake2003-07-161-1/+1
| | | | GNU info conversion.
* Adjust description of the internationalized domain name encoding toFred Drake2003-07-161-1/+1
| | | | better accomodate the GNU info conversion.
* Prevent failure on the mac, where "mbcs" is not the file systemMark Hammond2003-07-161-2/+3
| | | | encoding. Use sys.getfilesystemencoding().
* Map \envvar to the TeXinfo equivalent, @env.Fred Drake2003-07-161-1/+1
|
* Simple support for the alltt environment.Fred Drake2003-07-161-1/+3
|
* In the description of enumerate(), the indexing operators should notFred Drake2003-07-161-2/+2
| | | | | be included in the \var. This produced weird results in general, but broke the GNU info conversion.
* Teach this script about \AA and \aa (the Scandanavian A-ringFred Drake2003-07-161-1/+3
| | | | characters); \AA is used in whatsnew23.tex.
* Update to reflect the current status of the configuration system.Kurt B. Kaiser2003-07-166-85/+74
| | | | | | | | | | | | | | | Extensions must still be configured manually and there is currently one set of extension key bindings for all platforms. Bring NEWS.txt up to date. Update CREDITS.txt and idlever.py for release. M NEWS.txt M config-extensions.def M extend.txt M help.txt M idlever.py
* run_unittest() to support TestCase instances as well as classes. Helps with ↵Raymond Hettinger2003-07-161-1/+4
| | | | doctests.
* Correct previous patch looking for warnings module: sys.modules, notMark Hammond2003-07-161-1/+1
| | | | sys.__modules__.
* Nits.Raymond Hettinger2003-07-151-2/+2
|
* Fix [ 771097 ] frozen programs fail due to implicit import of "warnings".Mark Hammond2003-07-152-8/+40
| | | | | | If the initial import of warnings fails, clear the error. When the module is actually needed, if the original import failed, see if it has managed to find its way to sys.modules yet and if so, remember it.
* Indexing is a mess; try to get the link targets closer to the relevantFred Drake2003-07-152-14/+11
| | | | text. There needs to be a better way.
* process_commands_wrap_deferred:Fred Drake2003-07-151-5/+13
| | | | | | - fix comment describing what this is for - add lots of indexing macros to this call Closes SF bug #518989.
* Try to clean up some indexing relevant to the import statement.Fred Drake2003-07-151-3/+3
| | | | Pertains to SF bug #518989.
* Fixed test and converted to unittest format.Raymond Hettinger2003-07-151-1/+0
| | | | | Checking // would call floor division but did not test that true division had become the default with 'from __future__ import division'.
* Fixed test and converted to unittest format.Raymond Hettinger2003-07-151-6/+25
| | | | | Checking // would call floor division but did not test that true division had become the default with 'from __future__ import division'.
* Discuss calling new-style types.Fred Drake2003-07-151-1/+9
| | | | Closes SF bug #453683.
* SF patch 763201: handling of SyntaxErrors in symbol table buildJeremy Hylton2003-07-152-3/+30
| | | | Bug fix candidate.
* SF patch 763201: handling of SyntaxErrors in symbol table buildJeremy Hylton2003-07-151-33/+47
| | | | | | | | | | | | | | Fixes for three related bugs, including errors that caused a script to be ignored without printing an error message. The key problem was a bad interaction between syntax warnings and syntax errors. If an exception was already set when a warning was issued, the warning could clobber the exception. The PyErr_Occurred() check in issue_warning() isn't entirely satisfying (the caller should know whether there was already an error), but a better solution isn't immediately obvious. Bug fix candidate.
* heck environment closed status before closing a cursors. Fixes #763928.Martin v. Löwis2003-07-151-1/+8
|
* Add various test cases from SF patch 543867.Walter Dörwald2003-07-151-1/+58
|
* [Patch #708374] Only apply the check for file size if the file is a regular ↵Andrew M. Kuchling2003-07-151-1/+2
| | | | file, not a character or block device.