summaryrefslogtreecommitdiffstats
path: root/Tools/modulator
Commit message (Collapse)AuthorAgeFilesLines
* More 2to3 fixes in the Tools directory. Fixes #2893.Georg Brandl2008-05-164-5/+5
|
* Merged revisions 60990-61002 via svnmerge fromChristian Heimes2008-02-231-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. ........
* Remove more cruft leftover from nb_coerce. Rename nb_coerce toNeil Schemenauer2007-09-211-7/+0
| | | | nb_reserved.
* Convert raise statements in Tools/.Collin Winter2007-08-222-3/+3
|
* Remove string.{letters,lowercase,uppercase}.Martin v. Löwis2007-08-141-2/+2
|
* Remove support for __members__ and __methods__. There still might beNeal Norwitz2007-08-111-4/+4
| | | | | some cleanup to do on this. Particularly in Python/traceback.c with getting rid of the getattr if possible and Demo/*metaclasses/Enum.py.
* Convert print statements to function calls in Tools/.Collin Winter2007-08-031-8/+8
|
* Patch #1550800: make exec a function.Georg Brandl2006-09-061-2/+2
|
* Whitespace normalization, via reindent.py.Tim Peters2004-07-184-18/+18
|
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-15/+15
| | | | From SF patch #852334.
* Patch #812378: Normalize white space.Martin v. Löwis2003-10-242-21/+21
|
* Apply diff2.txt from SF patch http://www.python.org/sf/572113Walter Dörwald2002-09-113-5/+3
| | | | | | | | (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.
* staticforward bites the dust.Jeremy Hylton2002-07-171-1/+1
| | | | | | | | | | | | | | | The staticforward define was needed to support certain broken C compilers (notably SCO ODT 3.0, perhaps early AIX as well) botched the static keyword when it was used with a forward declaration of a static initialized structure. Standard C allows the forward declaration with static, and we've decided to stop catering to broken C compilers. (In fact, we expect that the compilers are all fixed eight years later.) I'm leaving staticforward and statichere defined in object.h as static. This is only for backwards compatibility with C extensions that might still use it. XXX I haven't updated the documentation.
* Patches by Jens B. Jorgensen with small mods by me:Jack Jansen2001-12-2717-146/+60
| | | | | - Converted the templates to use ANSI C prototypes (finally!) - Use re in stead of deprecated regex
* Use string.ascii_letters instead of string.letters (SF bug #226706).Fred Drake2001-07-201-2/+5
| | | | | Move computation of sets of characters out of the body of the function that uses them.
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
| | | | This should match the situation in the 1.6b1 tree.
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
|
* Change copyright notice.Guido van Rossum2000-06-301-21/+6
|
* Comment out confusing write call.Guido van Rossum1999-02-181-1/+1
|
* Clarify how EXAMPLE.py is to be used ("python EXAMPLE.py", notGuido van Rossum1999-02-161-1/+2
| | | | | "python modulator.py EXAMPLE.py") and that it's only there in case you don't have Tkinter.
* tabnanny stuffGuido van Rossum1998-04-104-507/+508
|
* /usr/local/bin/python -> /usr/bin/env pythonGuido van Rossum1996-11-272-2/+2
|
* New permission notice, includes CNRI.Guido van Rossum1996-10-251-9/+16
|
* A few missing casts (Richard Neitzel).Guido van Rossum1996-03-073-6/+9
| | | | Don't append Unix paths on a Mac (Jack Jansen).
* Removed unneeded reference to tkinterJack Jansen1995-10-231-1/+0
|
* comment fixJack Jansen1995-10-231-0/+2
|
* Added third argument to call()Jack Jansen1995-10-122-2/+3
|
* removed all references to modsupport.hGuido van Rossum1995-06-201-1/+0
|
* Two new methodsJack Jansen1995-06-202-0/+20
|
* UpdatedJack Jansen1995-06-201-4/+7
|
* Jim Fulton's change to support doc stringsJack Jansen1995-06-205-4/+30
|
* Templates converted to new naming conventions (thanks to Chak Tan)Jack Jansen1995-05-1617-131/+100
|
* Made the example slightly more completeJack Jansen1995-05-161-0/+7
|
* moved Demo/modulator to Tools/modulatorGuido van Rossum1995-03-021-1/+1
|
* checkin of Jack's original versionGuido van Rossum1995-03-0227-0/+1525