Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix some markup errors that prevented formatting, and one that didn't. | Fred Drake | 2000-08-12 | 1 | -4/+5 |
| | |||||
* | Add the current Win64 compiler to the list of those that need the | Trent Mick | 2000-08-12 | 1 | -1/+5 |
| | | | | | huge switch statement broken up. This will probably not be necessary when the Win64 compiler matures. | ||||
* | Updated this module after the recent grammar changes | Andrew M. Kuchling | 2000-08-12 | 1 | -11/+15 |
| | |||||
* | Back out ESR's erroneous commit of a DB-related change | Andrew M. Kuchling | 2000-08-12 | 1 | -6/+0 |
| | |||||
* | list comprehensions. see | Skip Montanaro | 2000-08-12 | 8 | -232/+528 |
| | | | | | | http://sourceforge.net/patch/?func=detailpatch&patch_id=100654&group_id=5470 for details. | ||||
* | Whoever added the Makefile rule to auto-build the Grammar didn't have | Guido van Rossum | 2000-08-12 | 1 | -1/+2 |
| | | | | | | his build directory in a different place than his source directory. I do, and it is supposed to be supported. The naive patch caused an endless recursion in the Make process. This should take care of that. | ||||
* | 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. | ||||
* | These files all used to be tagged as binary in CVS. I recently changed this so | Trent Mick | 2000-08-11 | 17 | -4040/+4040 |
| | | | | | | that these files are treated as normal text files (which they are). However, the files also had to be changed to be stored in CVS internally with UNIX line terminators (they had DOS line terminators internally before this commit). | ||||
* | 'make' in Grammar too, so graminit.h and graminit.c get re-build when | Thomas Wouters | 2000-08-11 | 1 | -2/+6 |
| | | | | | | | necessary. Do Grammar after Parser because Grammar needs Parser, and not the other way 'round. This patch doesn't bother with dependencies because it's tricky to get right (for instance for the modules that want graminit.h, like cPickle) and other dependencies are broken to begin with. | ||||
* | Merge UNPACK_LIST and UNPACK_TUPLE into a single UNPACK_SEQUENCE, since they | Thomas Wouters | 2000-08-11 | 6 | -29/+15 |
| | | | | | | | 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. | ||||
* | Add largefile support for Linux64 and WIn64. Add test_largefile and some minor | Trent Mick | 2000-08-11 | 4 | -44/+287 |
| | | | | | | | | | | change to regrtest.py to allow optional running of test_largefile ('cause it's slow on Win64). This closes patches: http://sourceforge.net/patch/index.php?func=detailpatch&patch_id=100510&group_id=5470 and http://sourceforge.net/patch/index.php?func=detailpatch&patch_id=100511&group_id=5470 | ||||
* | 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 |
| | |||||
* | Add support for FreeBSD --rpath linker option; this is equivalent to | Fred Drake | 2000-08-11 | 1 | -0/+1 |
| | | | | | | | -R on Solaris and -rpath on IRIX. This closes SourceForge bug #110613 (Jitterbug PR#202), reported by <aa8vb@yahoo.com>. | ||||
* | #include reordering so that extern "C" does not interfere with | Vladimir Marangozov | 2000-08-11 | 1 | -38/+40 |
| | | | | | | standard C++ specific includes. Closes patch 101061. | ||||
* | Added #fndef's to avoid compiler errors. | Marc-André Lemburg | 2000-08-11 | 1 | -1/+3 |
| | |||||
* | Use built in function filter instead of doing it laboriously by hand. | Sjoerd Mullender | 2000-08-11 | 1 | -5/+4 |
| | |||||
* | Fix missing decrements of the recursive counter in PyObject_Compare(). | Vladimir Marangozov | 2000-08-11 | 1 | -6/+12 |
| | | | | Closes Patch #101065. | ||||
* | Clean up compiler warning exposed by GCC's -Wall option: make sure | Fred Drake | 2000-08-10 | 1 | -2/+2 |
| | | | | | Python.h is included before standard headers since we set _GNU_SOURCE there. This ensures that strdup() is prototyped. | ||||
* | add better algorithm to get fully qualified domain name for localhost | Peter Schneider-Kamp | 2000-08-10 | 1 | -17/+21 |
| | | | | | | | in smtplib.ehlo() and smtplib.helo(). closes patch #101103 closes bug #110935 | ||||
* | remove all occurence of math.rint() from the sources | Peter Schneider-Kamp | 2000-08-10 | 9 | -133/+90 |
| | | | | (and yes, "Currintly" also counts <0.5 wink>) | ||||
* | Improve MHMailbox: messages are now sorted in numerical order. | Guido van Rossum | 2000-08-10 | 1 | -3/+8 |
| | | | | Also don't allow leading zeros in message numbers. | ||||
* | 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 | 3 | -4/+20 |
| | |||||
* | -- added a couple of missing Tkinter constants (canvas item styles, | Fredrik Lundh | 2000-08-09 | 1 | -0/+22 |
| | | | | place bordermode, etc) | ||||
* | -- don't mess up in winfo_visualsavailable if the system only | Fredrik Lundh | 2000-08-09 | 1 | -0/+2 |
| | | | | supports a single visual (closes bug #110603) | ||||
* | -- added optional newstate argument to Wm.state. The newstate arg | Fredrik Lundh | 2000-08-09 | 1 | -4/+4 |
| | | | | was added in Tk 8.3 (this fixes the first part of Bug #110605) | ||||
* | -- use explicit conversion instead of u-string literal in the test | Fredrik Lundh | 2000-08-09 | 1 | -4/+8 |
| | | | | | code, to make the new Tkinter.py run under 1.5.2 -- changed Text.yview argument name (for consistency with xview) | ||||
* | -- added xview_moveto, xview_scroll, yview_moveto, yview_scroll | Fredrik Lundh | 2000-08-09 | 1 | -3/+19 |
| | | | | to the Text method (closes Bug #110605) | ||||
* | -- untabification (use "diff -b" to verify) | Fredrik Lundh | 2000-08-09 | 2 | -2859/+2858 |
| | |||||
* | 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 |
| | |||||
* | -- changed findall to return empty strings instead of None | Fredrik Lundh | 2000-08-09 | 2 | -11/+12 |
| | | | | for undefined groups | ||||
* | -- enabled some temporarily disabled RE tests | Fredrik Lundh | 2000-08-08 | 3 | -6/+39 |
| | | | | | -- added basic unicode tests to test_re -- added test case for Sjoerd's xmllib problem to re_tests | ||||
* | -- whitespace cleanup (real changes coming in next checkin) | Fredrik Lundh | 2000-08-08 | 1 | -20/+20 |
| | |||||
* | -- whitespace cleanup (more tests to be added in the next commit) | Fredrik Lundh | 2000-08-08 | 1 | -23/+23 |
| | |||||
* | Barry's patch to document the new setdefault() method. Slightly | Guido van Rossum | 2000-08-08 | 1 | -0/+8 |
| | | | | | clarified the summary for default() in the table to indicate the side effect. | ||||
* | Barry's patch to test the new setdefault() method. | Guido van Rossum | 2000-08-08 | 1 | -0/+12 |
| | |||||
* | Barry's patch to implement the new setdefault() method. | Guido van Rossum | 2000-08-08 | 2 | -0/+40 |
| | |||||
* | Fix so 'split_quoted()' handles any whitespace delimiter (not just space). | Greg Ward | 2000-08-08 | 1 | -2/+2 |
| |