summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_tcl.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #21951: Fixed a crash in Tkinter on AIX when called Tcl command withSerhiy Storchaka2014-09-111-1/+2
|\ | | | | | | | | | | | | empty string or tuple argument. On some platforms Tcl memory allocator returns NULL when allocating zero-sized block of memory.
| * Issue #21951: Fixed a crash in Tkinter on AIX when called Tcl command withSerhiy Storchaka2014-09-111-1/+2
| | | | | | | | | | | | | | empty string or tuple argument. On some platforms Tcl memory allocator returns NULL when allocating zero-sized block of memory.
* | Issue #22226: Added private function _splitdict() in the Tkinter module.Serhiy Storchaka2014-09-061-1/+36
|\ \ | |/ | | | | | | First letter no longer is stripped from the "status" key in the result of Treeview.heading().
| * Issue #22226: Added private function _splitdict() in the Tkinter module.Serhiy Storchaka2014-09-061-1/+36
| | | | | | | | | | First letter no longer is stripped from the "status" key in the result of Treeview.heading().
* | Issue #22334: Add debug traces to test_tclVictor Stinner2014-09-041-2/+6
| |
* | Clean up test_user_command.Serhiy Storchaka2014-08-181-11/+14
|\ \ | |/
| * Clean up test_user_command.Serhiy Storchaka2014-08-181-11/+14
| |
* | Issue #21580: Now Tkinter correctly handles bytes arguments passed to Tk.Serhiy Storchaka2014-07-301-9/+15
|\ \ | |/ | | | | In particular this allows to initialize images from binary data.
| * Issue #21580: Now Tkinter correctly handles bytes arguments passed to Tk.Serhiy Storchaka2014-07-301-9/+15
| | | | | | | | In particular this allows to initialize images from binary data.
* | Issue #21951: Temporary skip crashing test_user_command on AIX.Serhiy Storchaka2014-07-301-0/+1
|\ \ | |/
| * Issue #21951: Temporary skip crashing test_user_command on AIX.Serhiy Storchaka2014-07-301-0/+1
| |
* | Issue #21881: Just omit tests for platform-specific NaN representation in ↵Serhiy Storchaka2014-07-071-6/+2
|\ \ | |/ | | | | test_tcl.
| * Issue #21881: Just omit tests for platform-specific NaN representation in ↵Serhiy Storchaka2014-07-071-6/+2
| | | | | | | | test_tcl.
* | Issue #21881: Be more tolerant in test_tcl to not parsable by float() NaNSerhiy Storchaka2014-07-071-6/+6
|\ \ | |/ | | | | representations (on mips and m68k platforms).
| * Issue #21881: Be more tolerant in test_tcl to not parsable by float() NaNSerhiy Storchaka2014-07-071-6/+6
| | | | | | | | representations (on mips and m68k platforms).
* | Test correct getXXX methods in Tkinter bigmem tests.Serhiy Storchaka2014-05-301-3/+3
|\ \ | |/ | | | | Tk.getint is just int, true Tk wrapper is available as Tk.tk.getint.
| * Test correct getXXX methods in Tkinter bigmem tests.Serhiy Storchaka2014-05-301-3/+3
| | | | | | | | Tk.getint is just int, true Tk wrapper is available as Tk.tk.getint.
* | Issue #21552: Fixed possible integer overflow of too long string lengths inSerhiy Storchaka2014-05-301-1/+26
|\ \ | |/ | | | | the tkinter module on 64-bit platforms.
| * Issue #21552: Fixed possible integer overflow of too long string lengths inSerhiy Storchaka2014-05-301-1/+26
| | | | | | | | the tkinter module on 64-bit platforms.
* | Add tests for getint, getdouble and getboolean methods of the tkapp object.Serhiy Storchaka2014-05-301-0/+44
|\ \ | |/
| * Add tests for getint, getdouble and getboolean methods of the tkapp object.Serhiy Storchaka2014-05-301-0/+44
| |
* | Issue #21525: Most Tkinter methods which accepted tuples now accept lists too.Serhiy Storchaka2014-05-211-0/+8
|/
* Issue #20743: Fix a reference leak in test_tcl.Antoine Pitrou2014-02-231-0/+1
|\
| * Issue #20743: Fix a reference leak in test_tcl.Antoine Pitrou2014-02-231-0/+1
| |
* | Issue #20532: Tests which use _testcapi now are marked as CPython only.Serhiy Storchaka2014-02-071-4/+8
|\ \ | |/
| * Issue #20532: Tests which use _testcapi now are marked as CPython only.Serhiy Storchaka2014-02-071-4/+8
| |
* | Skip expr* tests for large integers for Tcl <8.5.Serhiy Storchaka2014-02-031-4/+8
|\ \ | |/ | | | | | | The '**' operator is available only since 8.5 and in any case such large integers are not supported on Tcl <8.5.
| * Skip expr* tests for large integers for Tcl <8.5.Serhiy Storchaka2014-02-031-4/+8
| | | | | | | | | | The '**' operator is available only since 8.5 and in any case such large integers are not supported on Tcl <8.5.
* | Issue #20368: The null character now correctly passed from Tcl to Python.Serhiy Storchaka2014-02-031-10/+40
|\ \ | |/ | | | | Improved error handling in variables-related commands.
| * Issue #20368: The null character now correctly passed from Tcl to Python.Serhiy Storchaka2014-02-031-10/+40
| | | | | | | | Improved error handling in variables-related commands.
* | Issue #20368: Add tests for Tkinter methods exprstring(), exprdouble(),Serhiy Storchaka2014-02-031-0/+135
|\ \ | |/ | | | | exprlong() and exprboolean().
| * Issue #20368: Add tests for Tkinter methods exprstring(), exprdouble(),Serhiy Storchaka2014-02-031-0/+135
| | | | | | | | exprlong() and exprboolean().
* | Issue #19320: Fixed split/splitlist tests in test_tcl for Tcl 8.5.0-8.5.5.Serhiy Storchaka2014-02-021-5/+28
|\ \ | |/
| * Issue #19320: Fixed split/splitlist tests in test_tcl for Tcl 8.5.0-8.5.5.Serhiy Storchaka2014-02-021-5/+28
| |
* | Fixed test_user_command on OpenSolaris where floats can have different stringSerhiy Storchaka2014-01-231-9/+20
|\ \ | |/ | | | | representation in Tcl and Python.
| * Fixed test_user_command on OpenSolaris where floats can have different stringSerhiy Storchaka2014-01-231-9/+20
| | | | | | | | representation in Tcl and Python.
* | Added test_user_command in test_tcl.Serhiy Storchaka2014-01-231-0/+28
|\ \ | |/ | | | | | | It tests the convertion Tcl values to Python values when Tcl calls a command implemented on Python. Currently all values are passed as strings.
| * Added test_user_command in test_tcl.Serhiy Storchaka2014-01-231-0/+28
| | | | | | | | | | It tests the convertion Tcl values to Python values when Tcl calls a command implemented on Python. Currently all values are passed as strings.
* | Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-161-2/+0
|\ \ | |/ | | | | | | | | | | requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface. Fixed shebang lines in the unittestgui and checkpip scripts.
| * Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-161-2/+0
| | | | | | | | | | | | | | requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface. Fixed shebang line to use python3 executable in the unittestgui script.
* | Issue #19320: test_tcl no longer fails when wantobjects is false.Serhiy Storchaka2013-12-251-13/+29
|\ \ | |/
| * Issue #19320: test_tcl no longer fails when wantobjects is false.Serhiy Storchaka2013-12-251-13/+29
| |
* | Print Tk patchlevel in test_tcl in verbose mode (issue19654).Serhiy Storchaka2013-11-201-0/+6
|\ \ | |/
| * Print Tk patchlevel in test_tcl in verbose mode (issue19654).Serhiy Storchaka2013-11-201-0/+6
| |
| * Fixed merge test for Tcl/Tk <8.5 (issue #18964).Serhiy Storchaka2013-10-271-2/+5
| |
| * Issue #19028: Fixed tkinter.Tkapp.merge() for non-string arguments.Serhiy Storchaka2013-09-231-0/+31
|/
* Fixed tests with Tcl/Tk <8.5 (closes #18964).Serhiy Storchaka2013-09-081-4/+18
|
* Issue #16809: Tkinter's splitlist() and split() methods now accept Tcl_ObjSerhiy Storchaka2013-08-221-0/+4
| | | | | | argument. This is needed for support Tcl/Tk 8.6.
* Issue #17119: Fixed integer overflows when processing large strings and tuplesSerhiy Storchaka2013-08-211-1/+15
| | | | in the tkinter module.
* Issue #18101: Tcl.split() now process strings nested in a tuple as itSerhiy Storchaka2013-07-111-0/+60
| | | | | | do with byte strings. Added tests for Tcl.split() and Tcl.splitline().