Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | As pointed out by Denis S. Otkidach <den@analyt.chem.msu.ru>, xrange() | Fred Drake | 2000-08-18 | 1 | -14/+15 |
| | | | | | | | | returns an xrange object, not a range object, despite the name of the source file they're implemented in. In the list of comparison operators, list != before <>, since <> is described as obsolescent. | ||||
* | Adjust the way __getslice__() is marked as deprecated; this will also | Fred Drake | 2000-08-18 | 1 | -2/+4 |
| | | | | stand out more. | ||||
* | Fix a markup error that caused formatting to fail. | Fred Drake | 2000-08-18 | 1 | -16/+17 |
| | | | | Lots of minor markup adjustments as well. | ||||
* | Mention the new 'import X as Y' syntax | Andrew M. Kuchling | 2000-08-17 | 1 | -0/+4 |
| | |||||
* | Document the returns_unicode attribute | Andrew M. Kuchling | 2000-08-17 | 1 | -4/+11 |
| | |||||
* | Apply SF patch #101135, adding 'import module as m' and 'from module import | Thomas Wouters | 2000-08-17 | 2 | -10/+21 |
| | | | | | | | | name as n'. By doing some twists and turns, "as" is not a reserved word. There is a slight change in semantics for 'from module import name' (it will now honour the 'global' keyword) but only in cases that are explicitly undocumented. | ||||
* | Apply SF patch #101029: call __getitem__ with a proper slice object if there | Thomas Wouters | 2000-08-17 | 1 | -9/+18 |
| | | | | | | | | is no __getslice__ available. Also does the same for C extension types. Includes rudimentary documentation (it could use a cross reference to the section on slice objects, I couldn't figure out how to do that) and a test suite for all Python __hooks__ I could think of, including the new behaviour. | ||||
* | Remove an item that's been done. | Fred Drake | 2000-08-17 | 1 | -2/+0 |
| | |||||
* | A little more text, and some really minor cleanups. | Fred Drake | 2000-08-17 | 1 | -3/+10 |
| | |||||
* | Small cleanups, and note when zip() entered the menagerie. | Fred Drake | 2000-08-17 | 1 | -3/+1 |
| | |||||
* | Revise the comments about the exceptions module to not refer to source | Fred Drake | 2000-08-17 | 1 | -4/+4 |
| | | | | | code; it is not sufficiently readable now that it in written in C, and is less likely to be available to end users. | ||||
* | Martin v. Loewis <martin@loewis.home.cs.tu-berlin.de>: | Fred Drake | 2000-08-17 | 1 | -0/+19 |
| | | | | Document opcodes added to support extended call syntax. | ||||
* | \citetitle: Format the title, not the optional URL! | Fred Drake | 2000-08-17 | 1 | -1/+1 |
| | |||||
* | Add section on list comprehension | Andrew M. Kuchling | 2000-08-17 | 1 | -4/+120 |
| | | | | | Comment out the unwritten XML section mymalloc.h -> pymem.h | ||||
* | Ka-Ping Yee <ping@lfw.org>: | Fred Drake | 2000-08-16 | 1 | -6/+10 |
| | | | | Further examples of list comprehensions. | ||||
* | Document socket.getfqdn(). | Fred Drake | 2000-08-16 | 1 | -4/+12 |
| | |||||
* | Mention setdefault() method for dicts | Andrew M. Kuchling | 2000-08-16 | 1 | -0/+16 |
| | |||||
* | Apply SF patch #101151, by Peter S-K, which fixes smtplib's passing of the | Thomas Wouters | 2000-08-15 | 1 | -0/+2 |
| | | | | | | 'helo' and 'ehlo' message, and exports the 'make_fqdn' function. This function should be moved to socket.py, if that module ever gets a Python wrapper. | ||||
* | Fix error made in applying Thomas's patch. | Fred Drake | 2000-08-15 | 1 | -1/+1 |
| | |||||
* | Thomas Wouters <thomas@xs4all.net>: | Fred Drake | 2000-08-15 | 1 | -1/+2 |
| | | | | | Update the grammar to reflect the most recent changes to list comprehensions. | ||||
* | Fix markup bug that prevented formatting. | Fred Drake | 2000-08-15 | 1 | -7/+9 |
| | | | | | Adjusted some markup for consistency with the rest of the documentation and creation of the proper index entries. | ||||
* | Describe the b2a_hex() and a2b_hex() functions (a.k.a. hexlify() and | Barry Warsaw | 2000-08-15 | 1 | -0/+15 |
| | | | | unhexlify() respectively). | ||||
* | Added description of the md5.hexdigest() method. | Barry Warsaw | 2000-08-15 | 1 | -0/+5 |
| | |||||
* | Correct the reference count information for the parameters of | Fred Drake | 2000-08-15 | 1 | -3/+3 |
| | | | | PyErr_Restore(). | ||||
* | Guido pointed out that all names in the sys module have no underscore, | Fred Drake | 2000-08-15 | 1 | -1/+1 |
| | |||||
* | For bug reporting, point to the SourceForge bug tracker instead of the | Fred Drake | 2000-08-14 | 1 | -2/+2 |
| | | | | old Jitterbug interface. | ||||
* | Document the byte_order value in the sys module. | Fred Drake | 2000-08-14 | 1 | -0/+8 |
| | |||||
* | Document the range type, as suggested by Denis S. Otkidach | Fred Drake | 2000-08-14 | 1 | -4/+24 |
| | | | | <den@analyt.chem.msu.ru>. | ||||
* | In the section on the "Very High Level Layer", address concerns brought up | Fred Drake | 2000-08-14 | 1 | -0/+9 |
| | | | | | | | | by Edward K. Ream <edream@users.sourceforge.net> about FILE* values and incompatible C libraries in dynamically linked extensions. It is not clear (to me) how realistic the issue is, but it is better documented than not. This closes SourceForge bug #111520. | ||||
* | Fix some markup errors that prevented formatting, and one that didn't. | Fred Drake | 2000-08-12 | 1 | -4/+5 |
| | |||||
* | list comprehensions. see | Skip Montanaro | 2000-08-12 | 2 | -5/+35 |
| | | | | | | http://sourceforge.net/patch/?func=detailpatch&patch_id=100654&group_id=5470 for details. | ||||
* | Added information for PyEval_EvalCode(). | Fred Drake | 2000-08-12 | 1 | -2/+7 |
| | | | | Fixed a couple of typos (new references are represented by "+1", not "1"). | ||||
* | Added Marc-Andre Lemburg's documentation for string methods, with some | Fred Drake | 2000-08-12 | 1 | -23/+216 |
| | | | | | | | | massaging for markup consistency. This closes SourceForge patch #101063. Added Unicode strings and buffer objects to the list of sequence types. Small markup nits elsewhere. | ||||
* | Merge UNPACK_LIST and UNPACK_TUPLE into a single UNPACK_SEQUENCE, since they | Thomas Wouters | 2000-08-11 | 1 | -4/+4 |
| | | | | | | | did the same anyway. I'm not sure what to do with Tools/compiler/compiler/* -- that isn't part of distutils, is it ? Should it try to be compatible with old bytecode version ? | ||||
* | PyRun_InteractiveOne(), | Fred Drake | 2000-08-11 | 1 | -2/+20 |
| | | | | | | | | PyRun_InteractiveLoop(): Added descriptions. PyExc_WindowsError: Added to list of standard exceptions and added note about the right preprocessor symbol to use to protect code that uses it. | ||||
* | Some minor clarifications and added some index entries. | Fred Drake | 2000-08-11 | 1 | -20/+22 |
| | |||||
* | O_BINARY: Documented this constant; omission noted by David Ascher. | Fred Drake | 2000-08-11 | 1 | -1/+8 |
| | | | | | access(): Corrected availability statement; error pointed out by Tim Peters. | ||||
* | do_env_cfuncdesc(): Push as much of the generated HTML into one place | Fred Drake | 2000-08-11 | 1 | -8/+8 |
| | | | | as possible for better readability. Revise a comment. | ||||
* | getopt(): revise description of long_options parameter slightly so it will | Fred Drake | 2000-08-11 | 1 | -19/+43 |
| | | | | | | | | | | be less confusing; add a paragraph separation so that comments about the options and long_options parameters don't have references that are easily misinterpreted. Adjust the interactive examples to not need the string module. Add an example showing how the module is commonly used in a script. | ||||
* | Added material about documenting packages, so that the use of module | Fred Drake | 2000-08-11 | 1 | -0/+20 |
| | | | | markup for packages is clear. | ||||
* | Include the document dependencies earlier so that documents are rebuilt | Fred Drake | 2000-08-11 | 1 | -2/+2 |
| | | | | when they need to be. | ||||
* | Markup errors: \cfuntion -> \cfunction | Fred Drake | 2000-08-11 | 1 | -3/+3 |
| | |||||
* | ANY becomes void, to reflect the requirement for ANSI C. | Fred Drake | 2000-08-11 | 1 | -18/+11 |
| | |||||
* | remove all occurence of math.rint() from the sources | Peter Schneider-Kamp | 2000-08-10 | 1 | -5/+0 |
| | | | | (and yes, "Currintly" also counts <0.5 wink>) | ||||
* | More on noutrefresh. | Eric S. Raymond | 2000-08-09 | 1 | -1/+3 |
| | |||||
* | Tweak curses.wrapper so it initializes colors if they are available. | Eric S. Raymond | 2000-08-09 | 1 | -4/+5 |
| | |||||
* | Correct markup error. | Fred Drake | 2000-08-09 | 1 | -2/+3 |
| | |||||
* | Correct version number at which the curses.ascii module was introduced. | Fred Drake | 2000-08-09 | 1 | -1/+1 |
| | |||||
* | Fix a few markup errors and lots of small consistency issues. | Fred Drake | 2000-08-09 | 1 | -42/+55 |
| | | | | Add "See also" link to curses.wrapper module from curses module. | ||||
* | fix_font(): Handle one more case for the magical first column of tables. | Fred Drake | 2000-08-09 | 1 | -0/+3 |
| |