summaryrefslogtreecommitdiffstats
path: root/Tools/faqwiz
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions ↵Georg Brandl2008-07-161-3/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r64722 | georg.brandl | 2008-07-05 12:13:36 +0200 (Sat, 05 Jul 2008) | 4 lines #2663: support an *ignore* argument to shutil.copytree(). Patch by Tarek Ziade. This is a new feature, but Barry authorized adding it in the beta period. ........ r64729 | mark.dickinson | 2008-07-05 13:33:52 +0200 (Sat, 05 Jul 2008) | 5 lines Issue 3188: accept float('infinity') as well as float('inf'). This makes the float constructor behave in the same way as specified by various other language standards, including C99, IEEE 754r, and the IBM Decimal standard. ........ r64753 | gregory.p.smith | 2008-07-06 05:35:58 +0200 (Sun, 06 Jul 2008) | 4 lines - Issue #2862: Make int and float freelist management consistent with other freelists. Changes their CompactFreeList apis into ClearFreeList apis and calls them via gc.collect(). ........ r64845 | raymond.hettinger | 2008-07-10 16:03:19 +0200 (Thu, 10 Jul 2008) | 1 line Issue 3301: Bisect functions behaved badly when lo was negative. ........ r64846 | raymond.hettinger | 2008-07-10 16:34:57 +0200 (Thu, 10 Jul 2008) | 1 line Issue 3285: Fractions from_float() and from_decimal() accept Integral arguments. ........ r64849 | andrew.kuchling | 2008-07-10 16:43:31 +0200 (Thu, 10 Jul 2008) | 1 line Wording changes ........ r64871 | raymond.hettinger | 2008-07-11 14:00:21 +0200 (Fri, 11 Jul 2008) | 1 line Add cautionary note on the use of PySequence_Fast_ITEMS. ........ r64880 | amaury.forgeotdarc | 2008-07-11 23:28:25 +0200 (Fri, 11 Jul 2008) | 5 lines #3317 in zipfile module, restore the previous names of global variables: some applications relied on them. Also remove duplicated lines. ........ r64881 | amaury.forgeotdarc | 2008-07-11 23:45:06 +0200 (Fri, 11 Jul 2008) | 3 lines #3342: In tracebacks, printed source lines were not indented since r62555. #3343: Py_DisplaySourceLine should be a private function. Rename it to _Py_DisplaySourceLine. ........ r64882 | josiah.carlson | 2008-07-12 00:17:14 +0200 (Sat, 12 Jul 2008) | 2 lines Fix for the AttributeError in test_asynchat. ........ r64885 | josiah.carlson | 2008-07-12 01:26:59 +0200 (Sat, 12 Jul 2008) | 2 lines Fixed test for asyncore. ........ r64888 | matthias.klose | 2008-07-12 09:51:48 +0200 (Sat, 12 Jul 2008) | 2 lines - Fix bashisms in Tools/faqwiz/move-faqwiz.sh ........ r64897 | benjamin.peterson | 2008-07-12 22:16:19 +0200 (Sat, 12 Jul 2008) | 1 line fix various doc typos #3320 ........ r64900 | alexandre.vassalotti | 2008-07-13 00:06:53 +0200 (Sun, 13 Jul 2008) | 2 lines Fixed typo. ........ r64901 | benjamin.peterson | 2008-07-13 01:41:19 +0200 (Sun, 13 Jul 2008) | 1 line #1778443 robotparser fixes from Aristotelis Mikropoulos ........ r64915 | nick.coghlan | 2008-07-13 16:52:36 +0200 (Sun, 13 Jul 2008) | 1 line Fix issue 3221 by emitting a RuntimeWarning instead of raising SystemError when the parent module can't be found during an absolute import (likely due to non-PEP 361 aware code which sets a module level __package__ attribute) ........ r64926 | martin.v.loewis | 2008-07-13 22:31:49 +0200 (Sun, 13 Jul 2008) | 2 lines Add turtle into the module index. ........ r64927 | alexandre.vassalotti | 2008-07-13 22:42:44 +0200 (Sun, 13 Jul 2008) | 3 lines Issue #3274: Use a less common identifier for the temporary variable in Py_CLEAR(). ........ r64928 | andrew.kuchling | 2008-07-13 23:43:25 +0200 (Sun, 13 Jul 2008) | 1 line Re-word ........ r64929 | andrew.kuchling | 2008-07-13 23:43:52 +0200 (Sun, 13 Jul 2008) | 1 line Add various items; move ctypes items into a subsection of their own ........ r64938 | andrew.kuchling | 2008-07-14 02:35:32 +0200 (Mon, 14 Jul 2008) | 1 line Typo fixes ........ r64939 | andrew.kuchling | 2008-07-14 02:40:55 +0200 (Mon, 14 Jul 2008) | 1 line Typo fix ........ r64940 | andrew.kuchling | 2008-07-14 03:18:16 +0200 (Mon, 14 Jul 2008) | 1 line Typo fix ........ r64941 | andrew.kuchling | 2008-07-14 03:18:31 +0200 (Mon, 14 Jul 2008) | 1 line Expand the multiprocessing section ........ r64944 | gregory.p.smith | 2008-07-14 08:06:48 +0200 (Mon, 14 Jul 2008) | 7 lines Fix posix.fork1() / os.fork1() to only call PyOS_AfterFork() in the child process rather than both parent and child. Does anyone actually use fork1()? It appears to be a Solaris thing but if Python is built with pthreads on Solaris, fork1() and fork() should be the same. ........ r64961 | jesse.noller | 2008-07-15 15:47:33 +0200 (Tue, 15 Jul 2008) | 1 line multiprocessing/connection.py patch to remove fqdn oddness for issue 3270 ........ r64966 | nick.coghlan | 2008-07-15 17:40:22 +0200 (Tue, 15 Jul 2008) | 1 line Add missing NEWS entry for r64962 ........ r64973 | jesse.noller | 2008-07-15 20:29:18 +0200 (Tue, 15 Jul 2008) | 1 line Revert 3270 patch: self._address is in pretty widespread use, need to revisit ........
* More old urllib usage.Georg Brandl2008-06-231-4/+4
|
* Remove traces of rfc822.Georg Brandl2008-06-121-2/+2
|
* More 2to3 fixes in the Tools directory. Fixes #2893.Georg Brandl2008-05-161-7/+6
|
* Merged revisions 60990-61002 via svnmerge fromChristian Heimes2008-02-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r60990 | eric.smith | 2008-02-23 17:05:26 +0100 (Sat, 23 Feb 2008) | 1 line Removed duplicate Py_CHARMASK define. It's already defined in Python.h. ........ r60991 | andrew.kuchling | 2008-02-23 17:23:05 +0100 (Sat, 23 Feb 2008) | 4 lines #1330538: Improve comparison of xmlrpclib.DateTime and datetime instances. Remove automatic handling of datetime.date and datetime.time. This breaks backward compatibility, but python-dev discussion was strongly against this automatic conversion; see the bug for a link. ........ r60994 | andrew.kuchling | 2008-02-23 17:39:43 +0100 (Sat, 23 Feb 2008) | 1 line #835521: Add index entries for various pickle-protocol methods and attributes ........ r60995 | andrew.kuchling | 2008-02-23 18:10:46 +0100 (Sat, 23 Feb 2008) | 2 lines #1433694: minidom's .normalize() failed to set .nextSibling for last element. Fix by Malte Helmert ........ r61000 | christian.heimes | 2008-02-23 18:40:11 +0100 (Sat, 23 Feb 2008) | 1 line Patch #2167 from calvin: Remove unused imports ........ r61001 | christian.heimes | 2008-02-23 18:42:31 +0100 (Sat, 23 Feb 2008) | 1 line Patch #1957: syslogmodule: Release GIL when calling syslog(3) ........ r61002 | christian.heimes | 2008-02-23 18:52:07 +0100 (Sat, 23 Feb 2008) | 2 lines Issue #2051 and patch from Alexander Belopolsky: Permission for pyc and pyo files are inherited from the py file. ........
* Convert print statements to function calls in Tools/.Collin Winter2007-08-032-23/+23
|
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-102-6/+6
| | | | | | (a) "except E, V" -> "except E as V" (b) V is now limited to a simple name (local variable) (c) V is now deleted at the end of the except block
* Remove sys.exc_type, sys.exc_value, sys.exc_tracebackNeal Norwitz2006-03-171-1/+1
|
* Remove background imageAndrew M. Kuchling2005-12-121-1/+1
|
* FixMichael W. Hudson2004-08-071-2/+2
| | | | | | [ 777659 ] Uninitialized variable used in Tools/faqwiz/faqwiz.py with help from jlgijsbers on #python-dev IRC.
* Whitespace normalization, via reindent.py.Tim Peters2004-07-182-5/+5
|
* delete timing output - it appears after the </html> line.Skip Montanaro2004-04-161-3/+0
|
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-4/+4
| | | | From SF patch #852334.
* Patch #812378: Normalize white space.Martin v. Löwis2003-10-241-32/+32
|
* Apply diff2.txt from SF patch http://www.python.org/sf/572113Walter Dörwald2002-09-111-27/+27
| | | | | | | | (with one small bugfix in bgen/bgen/scantools.py) This replaces string module functions with string methods for the stuff in the Tools directory. Several uses of string.letters etc. are still remaining.
* Massive changes from SF 589982 (tempfile.py rewrite, by ZackGuido van Rossum2002-08-091-6/+6
| | | | | Weinberg). This changes all uses of deprecated tempfile functions to the recommended ones.
* Patch #512466: Script to move faqwiz entries.Martin v. Löwis2002-03-182-0/+50
|
* New version 1.0.4. I'm sure someone mailed me these patches but IGuido van Rossum2000-03-311-6/+20
| | | | | | | can't remember who. :-) Changes: - Support for Windows NT (different locking behavior) - Added a logging mechanism
* New version 1.0.4. I'm sure someone mailed me these patches but IGuido van Rossum2000-03-311-14/+33
| | | | | | | | can't remember who. :-) Changes: - Owner name+email made generic instead of GvR - Support for Windows NT (running from a .bat file) - DOcument <HTML>...</HTML> tags
* Provide more detail when the commit button is not shown.Guido van Rossum1998-12-232-8/+17
|
* Beh, new version must be edited in a separate file.Guido van Rossum1998-09-041-1/+1
|
* Use SCRIPT_NAME (if defined) instead of hardcoding /cgi-bin/ whenGuido van Rossum1998-09-041-1/+2
| | | | sending the cookie. (Suggestion by AMK.)
* # Bump version because of checkin to faqwiz.py. :-(Guido van Rossum1998-07-071-1/+1
|
* Don't add <...> around mail addresses; they may already be there.Guido van Rossum1998-07-071-1/+1
|
* Fix a dumb typo in the revparse() regular exception: {1-4} should be {1,4}.Guido van Rossum1998-05-221-1/+1
| | | | Now you can click on revisions and diffs again!
* whrandom -> randomGuido van Rossum1998-05-201-2/+2
|
* This really needs python 1.5 now...Guido van Rossum1998-04-081-1/+1
|
* Version 1.0 is official!Guido van Rossum1998-04-062-3/+6
|
* Untabified, for tabnanny.Guido van Rossum1998-04-061-593/+593
|
* posix->os.Guido van Rossum1998-04-031-3/+3
|
* Change default RCS bin directory to /usr/local/bin/.Guido van Rossum1998-02-191-1/+1
|
* Fix typo in format for strftime() used by cookie code.Guido van Rossum1998-02-021-1/+1
|
* Converted to use re instead of regex; version 0.9.0.Guido van Rossum1997-12-213-55/+52
|
* Up the version.Guido van Rossum1997-12-162-3/+3
|
* Fix a bug in translate(): the pointer was incremented by the length ofGuido van Rossum1997-12-161-2/+2
| | | | | the *escaped* url. Also added new special characters that are not part of the url when found at the end: ( < > .
* v 0.8.3 -- add an option to suppress URL processing inside <PRE>,Guido van Rossum1997-12-093-9/+15
| | | | by Scott <scott@chronis.icgroup.com>
* Add a pointer back to the wizard in the "compat" output.Guido van Rossum1997-11-211-1/+3
|
* Use a %s format for the exit status -- through the magical workings ofGuido van Rossum1997-11-111-1/+1
| | | | | the aptly named MagicDict class, the value is a string, not a number, by the time it is printed...
* As Mark Hammond found out, it was a bad idea to add "set -e" to theGuido van Rossum1997-11-111-1/+1
| | | | check in command -- this fails for new files!
* Version 0.8.1.Guido van Rossum1997-10-071-1/+1
|
* Add "set -e" to lock command.Guido van Rossum1997-10-071-1/+1
|
* Added section about multiple FAQs.Guido van Rossum1997-08-281-2/+22
|
* New installation instructions show how to maintain multiple FAQs.Guido van Rossum1997-08-284-35/+60
| | | | | | | | | Removed bootstrap script from end of faqwiz.py module. Added instructions to bootstrap script, too. Version bumped to 0.8. Added <html>...</html> feature suggested by Skip Montanaro. Added leading text for Roulette, default to 'Hit Reload ...'. Fix typo in default SRCDIR.
* Removed faqmain.py -- it was an earlier implementation and noGuido van Rossum1997-08-271-858/+0
| | | | longer relevant.
* Recognize https:// as URL as well.Guido van Rossum1997-08-181-1/+1
|
* New version (changes are so minor that I don't bother to explain them).Guido van Rossum1997-08-141-2/+2
|
* Of course, this file should be empty except for an informative comment.Guido van Rossum1997-08-141-23/+1
|
* Add a separate SRC directory and insert it in front of the path.Guido van Rossum1997-08-141-1/+2
|
* Add missing semicolon to '&gt;'.Guido van Rossum1997-08-141-1/+1
|
* Upped version to 0.6.Guido van Rossum1997-07-131-2/+2
|