summaryrefslogtreecommitdiffstats
path: root/Doc/using
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merged revisions ↵Georg Brandl2010-10-061-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 82798,82805,83659,83977,84015,84018,84141,84264,84326-84327,84480,84482,84484,84530-84531,84553,84619,84915-84916 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82798 | georg.brandl | 2010-07-11 11:23:11 +0200 (So, 11 Jul 2010) | 1 line #6774: explain shutdown() behavior varying with platform. ........ r82805 | georg.brandl | 2010-07-11 11:42:10 +0200 (So, 11 Jul 2010) | 1 line #7935: cross-reference to ast.literal_eval() from eval() docs. ........ r83659 | georg.brandl | 2010-08-03 14:06:29 +0200 (Di, 03 Aug 2010) | 1 line Terminology fix: exceptions are raised, except in generator.throw(). ........ r83977 | georg.brandl | 2010-08-13 17:10:49 +0200 (Fr, 13 Aug 2010) | 1 line Fix copy-paste error. ........ r84015 | georg.brandl | 2010-08-14 17:44:34 +0200 (Sa, 14 Aug 2010) | 1 line Add some maintainers. ........ r84018 | georg.brandl | 2010-08-14 17:48:49 +0200 (Sa, 14 Aug 2010) | 1 line Typo fix. ........ r84141 | georg.brandl | 2010-08-17 16:11:59 +0200 (Di, 17 Aug 2010) | 1 line Markup nits. ........ r84264 | georg.brandl | 2010-08-22 22:23:38 +0200 (So, 22 Aug 2010) | 1 line #9649: fix default value description. ........ r84326 | georg.brandl | 2010-08-26 16:30:15 +0200 (Do, 26 Aug 2010) | 1 line #9689: add links from overview to in-depth class API descriptions. ........ r84327 | georg.brandl | 2010-08-26 16:30:56 +0200 (Do, 26 Aug 2010) | 1 line #9681: typo. ........ r84480 | georg.brandl | 2010-09-04 00:33:27 +0200 (Sa, 04 Sep 2010) | 1 line More inclusive title. ........ r84482 | georg.brandl | 2010-09-04 00:40:02 +0200 (Sa, 04 Sep 2010) | 1 line #9760: clarify what context expression is. ........ r84484 | georg.brandl | 2010-09-04 00:49:27 +0200 (Sa, 04 Sep 2010) | 1 line Fix missing word. ........ r84530 | georg.brandl | 2010-09-05 19:07:12 +0200 (So, 05 Sep 2010) | 1 line #9747: fix copy-paste error in getresgid() doc. ........ r84531 | georg.brandl | 2010-09-05 19:09:18 +0200 (So, 05 Sep 2010) | 1 line #9776: fix some spacing. ........ r84553 | georg.brandl | 2010-09-06 08:49:07 +0200 (Mo, 06 Sep 2010) | 1 line #9780: both { and } are not valid fill characters. ........ r84619 | georg.brandl | 2010-09-08 12:43:45 +0200 (Mi, 08 Sep 2010) | 1 line Add Lukasz. ........ r84915 | georg.brandl | 2010-09-20 08:27:02 +0200 (Mo, 20 Sep 2010) | 1 line Fix typo. ........ r84916 | georg.brandl | 2010-09-20 08:29:01 +0200 (Mo, 20 Sep 2010) | 1 line Mention % as string formatting. ........
* | More descriptive title.Raymond Hettinger2010-09-011-1/+1
| |
* | Merged revisions 82615 via svnmerge fromGeorg Brandl2010-07-071-1/+1
| | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82615 | georg.brandl | 2010-07-07 00:58:50 +0200 (Mi, 07 Jul 2010) | 1 line Fix typo. ........
* | Update whatsnew/2.7.rst, add a few links and fix a couple of XXX. Also add ↵Ezio Melotti2010-07-031-0/+4
| | | | | | | | a paragraph about DeprecationWarnings in cmdline.rst.
* | Fix URL.Georg Brandl2010-06-271-2/+2
| |
* | Revert r80580 due to some unintended side effects. See issue #8202 for details.Nick Coghlan2010-06-131-3/+2
| |
* | Add version changed note for -m tinkering with sys.argv[0] during the search ↵Nick Coghlan2010-04-281-0/+2
| | | | | | | | process
* | Issue 8202: when using the -m command line switch, sys.argv[0] is now '-m' ↵Nick Coghlan2010-04-281-2/+3
| | | | | | | | instead of '-c' while searching for the module to be executed
* | Two grammar fixesAndrew M. Kuchling2010-04-111-2/+2
| |
* | tell people to update python.man, tooBenjamin Peterson2010-04-061-0/+3
| |
* | #7301: add the environment variable $PYTHONWARNINGS to supplement the -WPhilip Jenvey2010-04-061-0/+8
| | | | | | | | | | command line option patch from Brian Curtin
* | Fix some broken URLs.Ezio Melotti2010-04-051-1/+1
| |
* | Resolve bug 7847 by including documentation for -J, -U, and -X under "OptionsBarry Warsaw2010-02-051-5/+23
| | | | | | | | you shouldn't use".
* | #7653: clarify how the PythonPath registry key should look like.Georg Brandl2010-01-071-6/+7
| |
* | Add some missing command-line options to the main list. All but -V were alreadyBrett Cannon2010-01-011-2/+4
| | | | | | | | documented. Left -V undocumented for now (and -U was already undocumented).
* | #7388: "python".capitalize() in the DocEzio Melotti2009-12-192-3/+3
| |
* | Use "impl-detail" directive where applicable.Georg Brandl2009-10-221-1/+1
| |
* | Fix broken links found by "make linkcheck". scipy.org seems to be done ↵Georg Brandl2009-10-111-4/+3
| | | | | | | | right now, so I could not verify links going there.
* | #6904 - fix broken linkEzio Melotti2009-09-141-1/+1
| |
* | builtin -> built-in.Georg Brandl2009-07-261-1/+1
| |
* | #6332: fix word dupes throughout the source.Georg Brandl2009-06-241-1/+1
| |
* | Remove ".. warning::" markup that doesnt contain warnings for users, rather ↵Georg Brandl2009-04-271-1/+1
| | | | | | | | todo items.
* | Add section numbering to some of the larger subdocuments.Georg Brandl2009-03-281-0/+1
| |
* | Issue 4195: Restore the ability to execute packages with the -m switch (but ↵Nick Coghlan2009-02-081-1/+10
| | | | | | | | this time in a way that leaves the import machinery in a valid state). (Original patch by Andi Vajda)
* | fix spellingBenjamin Peterson2009-01-091-1/+1
| |
* | specify what -3 warnings are aboutBenjamin Peterson2009-01-091-1/+2
| |
* | Remove trailing whitespace.Georg Brandl2009-01-033-44/+44
| |
* | #4811: fix markup glitches (mostly remains of the conversion),Georg Brandl2009-01-021-1/+1
| | | | | | | | found by Gabriel Genellina.
* | Markup fix.Georg Brandl2008-12-231-2/+2
| |
* | Fix syntax.Georg Brandl2008-11-071-2/+1
|/
* #3916: fixes for docs wrt. Windows directory layoutGeorg Brandl2008-09-211-4/+4
|
* Remove things specific to the old Macintosh, and spell "Mac OS X" consistently.Georg Brandl2008-09-131-1/+1
|
* #3472: update Mac-bundled Python version info.Georg Brandl2008-09-091-5/+8
|
* fix various doc typos #3320Benjamin Peterson2008-07-121-2/+2
|
* Clarify what ":errorhandler" refers to.Georg Brandl2008-06-111-1/+2
|
* New environment variable PYTHONIOENCODING.Martin v. Löwis2008-06-011-0/+7
|
* Implemented PEP 370Christian Heimes2008-05-061-1/+34
|
* Update command line usage documentation to reflect 2.6 changes (also ↵Nick Coghlan2008-04-301-27/+62
| | | | includes some minor cleanups). Addresses TODO list issue 2258
* #2239: PYTHONPATH delimiter is os.pathsep.Georg Brandl2008-03-051-1/+2
|
* #2194: fix some typos.Georg Brandl2008-02-262-2/+2
|
* Specify what kind of warning -3 emits.Georg Brandl2008-02-231-0/+2
|
* Fix markup.Georg Brandl2008-01-201-4/+4
|
* Better method for associating .py files with the interpreter.Georg Brandl2008-01-081-8/+9
|
* Fix two further doc build warnings.Georg Brandl2008-01-071-2/+2
|
* Fix inconsistent title levels -- it made the whole doc build crash horribly.Raymond Hettinger2008-01-071-1/+1
|
* patch #1668: clarify envvar docs; rename THREADDEBUG to PYTHONTHREADDEBUG.Georg Brandl2008-01-071-2/+40
|
* Patch #602345 by Neal Norwitz and me: add -B option and ↵Georg Brandl2008-01-071-0/+15
| | | | PYTHONDONTWRITEBYTECODE envvar to skip writing bytecode.
* Some cleanup in the docs.Georg Brandl2007-12-291-3/+2
|
* Simplify.Georg Brandl2007-12-161-3/+1
|
* Update to windows doc from Robert.Georg Brandl2007-12-071-5/+12
|