summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Minor changes for stylistic cleanliness and consistency.Fred Drake2001-07-181-16/+20
|
* Change the command lines to use a similar "phrasing" to that used in theFred Drake2001-07-181-15/+15
| | | | | other documentation makefiles. This is probably not sufficient to run the conversion on Windows, but goes at least part way.
* "Make small changes, but carry a big diff."Fred Drake2001-07-181-248/+247
| | | | | | | Minor local consistency adjustments. A couple of small tweaks to the setdlopenflags() description. For setprofile() and settrace(), convert some references to become hyperlinks in the HTML version.
* Add some symbolic names to support hyperlinked references.Fred Drake2001-07-181-2/+2
|
* Add "help" to the things one is encouraged to type for moreGuido van Rossum2001-07-181-1/+2
| | | | information. (I found this idea in the ActivePython 2.1 diffs.)
* Made a few minor style & markup changes to the new {get,set}dlopenflags()Fred Drake2001-07-181-15/+17
| | | | descriptions; added availability notes.
* Deactivate definition of ss_family and ss_len. Fixes bug #440486.Martin v. Löwis2001-07-182-329/+331
|
* Patch #412229: Add functions sys.getdlopenflags and sys.setdlopenflags.Martin v. Löwis2001-07-186-13/+103
| | | | Add dlopenflags to PyInterpreterState, and use it in dlopen calls.
* Patch #432117: Record namespaces in the DOM tree using the DOM xmlns prefix.Martin v. Löwis2001-07-181-1/+18
|
* Ignore the html-*.tar file that can now be generated as an intermediate.Fred Drake2001-07-171-0/+1
|
* Revise the rules for building the distribution files for the HTML format.Fred Drake2001-07-171-7/+10
| | | | These work again.
* Mirror Guido's latest changes to the license file.Fred Drake2001-07-171-32/+44
|
* Be more specific about some of the dependencies, to avoid re-building whenFred Drake2001-07-171-10/+12
| | | | some of the mostly-general files get changed.
* Define new markup for 5-column tables.Fred Drake2001-07-173-7/+109
|
* Remove a couple of lines from the test that proved not to be portable toFred Drake2001-07-171-2/+0
| | | | all platforms that offer tempnam().
* Kill another merge zombie.Tim Peters2001-07-172-58/+0
|
* Kill another merge zombie.Fred Drake2001-07-171-7/+0
|
* Kill a merge zombie.Fred Drake2001-07-171-7/+0
|
* Start of a test suite for the "os" module -- this only tests the temporaryFred Drake2001-07-171-0/+60
| | | | | file management functions that have just been made available on more platforms.
* Used an adapted MethodGenerator to generate methods too for functions that ↵Jack Jansen2001-07-173-326/+300
| | | | have the object as the second arg after a first CFAllocatorRef arg (which we pass as NULL always anyway).
* Oops, left in a debug statement. It's gone now.Jack Jansen2001-07-171-1/+0
|
* Update the availability information for os.tempnam(), os.tmpfile(), andFred Drake2001-07-171-1/+3
| | | | os.tmpnam().
* On Windows, tempnam() is spelled with a leading underscore.Fred Drake2001-07-171-0/+4
|
* Define the constants needed to allow the os.tempnam(), os.tmpfile(), andFred Drake2001-07-171-0/+3
| | | | | | os.tmpnam() functions to be made available. This is part of SF patch #435492.
* A new attempt at rationalizing the "history of the software" section,Guido van Rossum2001-07-171-45/+60
| | | | | | with a table clarifying which releases are GPL-compatible. Also unified the headings for the various licenses.
* Adding what's done of the documentation for the new profiling &Fred Drake2001-07-171-0/+53
| | | | | tracing interface. Incomplete, but better to check it in since I've been including it in my updates.
* Use the "st" versions of the "ast" calls in the parser module -- there isFred Drake2001-07-171-2/+2
| | | | no reason to pretend the syntax trees we're dealing with are abstract.
* The syntax trees handled by this module are not "abstract," so take theFred Drake2001-07-171-132/+136
| | | | | "A" out of the internal abbreviations. For published functions with "ast" in their names, make alternate offerings using just "st".
* Typo repair.Tim Peters2001-07-171-1/+1
|
* Remove code to initialize globals that are never used.Fred Drake2001-07-171-22/+11
| | | | | | Add some casts to quiet warnings from an unspecified non-GCC compiler. This closes SF patch #436258.
* Delete sentence fragment (noted by Fred Bremmer)Andrew M. Kuchling2001-07-171-5/+5
|
* - Add news about generators.Guido van Rossum2001-07-171-1/+15
| | | | | - Change header to 2.2a1. - Add separator between 2.2 and 2.1 news.
* Bump the release number.Fred Drake2001-07-171-65/+62
| | | | | | | | Make the syntax of compound command lines more portable (nmake, CygWin). These changes are an adaptation of SF patch #429611. Use the new tools/rewrite.py instead of grep/date/sed to transform html/index.html.in into html/index.html; this is required for portability.
* Add a really stupid warning about 'yield' used as an identifier.Guido van Rossum2001-07-171-0/+12
| | | | | | | | | | | | | | | This is really stupid because it cannot be suppressed or altered using the warning framework; that's because the warning framework is built on Python interpreter internals, and the parser generator doesn't have access to any of those (you cannot use anything of type PyObject * in the parser). But it's better than nothing, and implementing a proper check for this appears to require modifying compile.c in a dozen places, for which I don't have the stamina today. I promise we'll do better in 2.2a2. At least it tells you the filename and line number (unlike the first hack I considered :-).
* Make the syntax for compound command lines more portable (nmake, CygWin).Fred Drake2001-07-171-8/+8
| | | | | | This is probably not sufficient by itself for the info generation, and is being done mostly to keep the style consistent with additional patches that will be applied to Doc/Makefile.
* Script to re-write @FOO@-style marks with values, initializing theFred Drake2001-07-171-0/+55
| | | | | | | | | | | | replacement for @DATE@ from a TeX file containing a \date{...} mark (such as texinputs/boilerplate.tex). This will be used to re-write the html/index.html.in file instead of a combination of grep, date, and sed -- this is more portable to non-Unix platforms. This solves part of the problem reported in SF patch #429611, but does not use the suggested patch.
* Update the release information.Fred Drake2001-07-171-1/+1
|
* Deleting zombiesGuido van Rossum2001-07-1722-2716/+0
|
* Now we're picking nits: get my name right! ;-)Fred Drake2001-07-171-1/+1
|
* Add FLD to credit listAndrew M. Kuchling2001-07-171-2/+3
| | | | Correct grammatical error
* Job.__init__(): Only create the builddir directory if it will be used (byFred Drake2001-07-171-6/+7
| | | | | | | | building the HTML or text documentation). There is no need to create it for other formats. Job.build_html(): The builddir parameter is always passed in, so it need not be optional.
* Deleting merge zombie.Guido van Rossum2001-07-171-480/+0
|
* Cleaned up a number of minor nits, use markup a little more consistently.Fred Drake2001-07-171-16/+25
|
* Minor rewrites to iterator and generator sectionsAndrew M. Kuchling2001-07-171-63/+75
| | | | | Credit both Neil and Tim for generators Fix indentation of a few paragraphs
* Fix a couple of minor markup nits.Fred Drake2001-07-171-5/+5
| | | | | Footnotes should be added *after* punctuation, not before. (Yes, this should be merged with the descr branch. Sorry, Tim!)
* INSTALLATION: Remove the coexist.patch instructionsKurt B. Kaiser2001-07-172-21/+10
| | | | | | | | **************** setup.py: Remove the idles script, add some words on IDLE Fork to the long_description, and clean up some line spacing.
* Put this in the attic, at least for now...Kurt B. Kaiser2001-07-171-186/+0
|
* Implement idle command interface as suggested by GvR [idle-dev] 16 JulyKurt B. Kaiser2001-07-173-38/+26
| | | | | | | | | | | | | | | | | | | | | | | | | **************** PyShell: Added functionality: usage: idle.py [-c command] [-d] [-i] [-r script] [-s] [-t title] [arg] ... idle file(s) (without options) edit the file(s) -c cmd run the command in a shell -d enable the debugger -i open an interactive shell -i file(s) open a shell and also an editor window for each file -r script run a file as a script in a shell -s run $IDLESTARTUP or $PYTHONSTARTUP before anything else -t title set title of shell window Remaining arguments are applied to the command (-c) or script (-r). ****************** idles: Removed the idles script, not needed ****************** idle: Removed the IdleConf references, not required anymore
* Prepare Windows installer for 2.2a1.Tim Peters2001-07-173-4/+7
|
* Added tests for the new yield support in the parser module.Fred Drake2001-07-171-1/+132
| | | | (Should be merged with descr branch.)