aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Demo
Commit message (Collapse)AuthorAge
* More cleanup: Move some demos into a dedicated Tools/demo dir, move 2to3 ↵Georg Brandl2010-12-30
| | | | demo to Tools, and remove all the other Demo content.
* Remove some of the old demos. (Put a few somewhere else.)Georg Brandl2010-12-30
|
* s/colour/color/gSenthil Kumaran2010-11-26
|
* Mouse support and colour to Demo/curses/life.py by Dafydd CrosbySenthil Kumaran2010-11-25
|
* Issue #10199: Moved Demo/turtle under Lib/Alexander Belopolsky2010-11-01
|
* Encoding fix.Georg Brandl2010-10-27
|
* faqwiz is removed.Georg Brandl2010-10-26
|
* Work a bit more on tkinter demos.Georg Brandl2010-10-26
|
* #3018: tkinter demo fixes for py3k.Georg Brandl2010-10-25
|
* remove obselete import implementation #7287Benjamin Peterson2010-10-13
|
* Use os.fsencode() to support surrogatesVictor Stinner2010-09-29
|
* Remove usage of rexec in tkinter demo.Georg Brandl2010-08-21
|
* Fix-up some tkinter demos.Georg Brandl2010-08-02
|
* Remove reference to removed faqwiz tool.Georg Brandl2010-08-02
|
* Remove obsolete pdist demo.Georg Brandl2010-08-02
|
* Another demo that at least runs again.Georg Brandl2010-08-02
|
* Make minigzip work again.Georg Brandl2010-08-02
|
* Update Demo README.Georg Brandl2010-08-02
|
* Update README, remove obsolete script.Georg Brandl2010-08-02
|
* #6439: fix argument type for PySys_SetArgvEx() and Py_SetProgramName() in ↵Georg Brandl2010-08-01
| | | | Demo/embed code.
* "Modernized" the demo a little.Alexander Belopolsky2010-07-05
|
* Update Vec class constructor, remove indirection via function, use operator ↵Georg Brandl2010-07-05
| | | | module.
* Remove Dbm.Georg Brandl2010-07-05
|
* Make Demo/parser/test_parser.py run.Mark Dickinson2010-07-04
|
* Fixed the testAlexander Belopolsky2010-07-04
|
* Fixed doctestsAlexander Belopolsky2010-07-04
|
* Remove old and unsafe Dbm demo class.Georg Brandl2010-07-04
|
* Made minimal modifications to pass included testsAlexander Belopolsky2010-07-03
|
* Issue #9151: Demo/classes/Dates.py does not work in 3.x ConvertedAlexander Belopolsky2010-07-03
| | | | | | descriptive comment into a docstring. Cast attributes to int in __init__. Use __new__ instead of deleting attributes to "uninitialize".
* Issue #9151: Demo/classes/Dates.py does not work in 3.xAlexander Belopolsky2010-07-03
| | | | Made minimal changes to make included test pass.
* Unparse infinite imaginary literals correctly. Add some more numeric tests.Mark Dickinson2010-06-30
|
* Revert accidental extra changes included in r82391.Mark Dickinson2010-06-30
|
* Issue #9011: Tests for Python 3.2's treatment of negated imaginary literals.Mark Dickinson2010-06-30
|
* Remove backtick syntax for repr.Mark Dickinson2010-06-30
|
* Better solution for attribute access on integer literals.Mark Dickinson2010-06-30
|
* Output try-except-finally statements where appropriate.Mark Dickinson2010-06-30
|
* Collapse else: if: ... into elif:Mark Dickinson2010-06-30
|
* Fix typo in unparsing of a class definition.Mark Dickinson2010-06-29
|
* test_unparse.py: Do roundtrip testing for all Python files in Lib and Lib/test.Mark Dickinson2010-06-29
|
* More unparse.py fixes:Mark Dickinson2010-06-29
| | | | | | | - parenthesize lambdas, to avoid turning (lambda : int)() into lambda: int() - unparse an infinite float literals in the AST as an overflowing finite value unparse.py now successfully round-trips on all valid Lib/*.py and Lib/test/*.py files.
* Add parentheses around numeric literals, to avoid turning 3 .bit_length() ↵Mark Dickinson2010-06-29
| | | | into 3.bit_length().
* unparse.py: respect coding cookie in input filesMark Dickinson2010-06-29
|
* Update md5driver.py for 3.x.Brian Curtin2010-06-29
| | | | Changed an import, replaced md5.new() with md5(), and added an encode where needed.
* unparse.py: Typo fix.Mark Dickinson2010-06-28
|
* Update Demo/parser/unparse.py to current Python 3.x syntax. Additions:Mark Dickinson2010-06-28
| | | | | | | | | | | | | | | | | | - relative imports - keyword-only arguments - function annotations - class decorators - raise ... from ... - except ... as ... - nonlocal - bytes literals - set literals - set comprehensions - dict comprehensions Removals: - print statement. Some of this should be backported to 2.x.
* Merged revisions 82345 via svnmerge fromMark Dickinson2010-06-28
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82345 | mark.dickinson | 2010-06-28 20:54:19 +0100 (Mon, 28 Jun 2010) | 1 line unparse.py: fix mispaced parentheses in chained comparisons ........
* Merged revisions 82338,82340-82341 via svnmerge fromMark Dickinson2010-06-28
| | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82338 | mark.dickinson | 2010-06-28 20:31:41 +0100 (Mon, 28 Jun 2010) | 9 lines Fix some shallow bugs in Demo/parser/unparse.py, and add tests: - insert commas between entries in del statement - left and right shifts were represented as >> and << (respectively); reverse - unindent properly after for: else: or while: else: - add parens around the result of an unary operation - add parens around negative numbers, to avoid turning (-1)**2 into -1**2. ........ r82340 | mark.dickinson | 2010-06-28 20:34:15 +0100 (Mon, 28 Jun 2010) | 1 line Fix typo in test_unparse.py. ........ r82341 | mark.dickinson | 2010-06-28 20:38:19 +0100 (Mon, 28 Jun 2010) | 1 line Set svn:eol-style on test_unparse.py. ........
* Merged revisions 81880 via svnmerge fromBenjamin Peterson2010-06-27
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81880 | andrew.kuchling | 2010-06-10 19:14:34 -0500 (Thu, 10 Jun 2010) | 1 line Edit comments for current Python; bump version number of Python ........
* Merged revisions 81881-81882 via svnmerge fromBenjamin Peterson2010-06-27
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81881 | andrew.kuchling | 2010-06-10 19:16:08 -0500 (Thu, 10 Jun 2010) | 1 line #5753: update demo.c to use PySys_SetArgvEx(), and add a comment ........ r81882 | andrew.kuchling | 2010-06-10 19:23:01 -0500 (Thu, 10 Jun 2010) | 1 line #5753: Suggest PySys_SetArgvEx() instead of PySys_SetArgv() ........
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-09
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines Untabify C files. Will watch buildbots. ........