summaryrefslogtreecommitdiffstats
path: root/Misc/python-wing4.wpr
Commit message (Expand)AuthorAgeFilesLines
* Wing project file update for mercurialMichael Foord2011-03-151-4/+5
* Issue 10611. Issue 9857. Improve the way exception handling, including test s...Michael Foord2010-12-191-1/+3
* Issue 9732: addition of getattr_static to the inspect moduleMichael Foord2010-11-201-1/+3
* Adding Wing IDE version 4 project fileMichael Foord2010-10-131-0/+13
Tcl is a high-level, general-purpose, interpreted, dynamic programming language. It was designed with the goal of being very simple but powerful.
summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | purge outdated commentdgp2005-03-231-4/+2
| |
* | date typodgp2005-03-181-1/+1
| |
* | * generic/tclBasic.c (Tcl_EvalEx): Restored recursion limitdgp2005-03-185-22/+80
| | | | | | | | | | | | | | | | * generic/tclParse.c (TclSubstTokens): testing in nested command * tests/basic.test (basic-46.4): substitutions within direct * tests/parse.test (parse-19.*): script evaluation (Tcl_EvalEx) that got lost in the parser reforms of Tcl 8.1. Added tests for correct behavior. [Bug 1115904]
* | * generic/tclCompCmds.c (TclCompileIncrCmd): Corrected checksdgp2005-03-182-15/+17
| | | | | | | | | | for immediate operand usage to permit leading space and sign characters. [Bug 1165671]
* | more tests and a fix to bug 1158199vincentdarley2005-03-152-5/+16
| |
* | fix to file norm, file pathtype on windows reserved filenames - ensure build ↵vincentdarley2005-03-151-4/+4
| | | | | | | | ok on unix
* | fix to file norm, file pathtype on windows reserved filenames - ensure build ↵vincentdarley2005-03-151-4/+10
| | | | | | | | ok on unix
* | fix to file norm, file pathtype on windows reserved filenamesvincentdarley2005-03-154-18/+152
| |
* | Updated the OpenBSD configuration and regenerated the configure script.patthoyts2005-03-153-30/+83
| |
* | * generic/tclExecute.c: fixed INST_PUSH1's debugging code (wrongMiguel Sofer2005-03-142-2/+7
| | | | | | | | obj ref passed to TRACE_WITH_OBJ).
* | * generic/tclCompile.c: fixed INST_RETURN's stack effect inMiguel Sofer2005-03-142-2/+7
| | | | | | | | tclInstructionTable (-1 instead of -2)
* | * generic/tclCompCmds.c: removed debugging lineMiguel Sofer2005-03-102-2/+5
| |
* | * generic/tclTrace.c (TclCheckInterpTraces): Corrected mistakendgp2005-03-104-24/+40
| | | | | | | | | | | | | | | | | | cast of ClientData to (TraceCommandInfo *) when not warranted. Thanks to Yuri Victorovich for the report. [Bug 1153871] * generic/tcl.h: Moved flag values TCL_TRACE_ENTER_EXEC and * generic/tclInt.h: TCL_TRACE_LEAVE_EXEC from public interface into private. Should be used only by internal workings of execution traces.
* | Fix commentdkf2005-03-091-1/+2
| |
* | reverting Changelog entry (sticky tags, doh ...)Miguel Sofer2005-03-091-10/+0
| |
* | msofer-wcodes-branch created to develop a compiler/engine based onMiguel Sofer2005-03-091-0/+10
| | | | | | | | wordsized instructions and operands.
* | * win/makefile.vc: clarify necessary defined vars that can comehobbs2005-03-082-14/+23
| | | | | | | | from MSVC or the Platform SDK.
* | Minor typo fix. [Bug 1158247]dkf2005-03-072-6/+10
| |
* | missing Changelog entryMiguel Sofer2005-03-071-0/+6
| |
* | * generic/tclExecute.c: new peephole optimisation for INST_PUSH1;Miguel Sofer2005-03-071-6/+27
| | | | | | | | | | fixed the peephole opt in INST_POP so that it is not used when TCL_COMPILE_DEBUG is defined.
* | * doc/CrtSlave.3: Changed to Tcl_Object to Tcl_Obj in the man page.davidw2005-03-012-2/+7
| |
* | speed up some testsdgp2005-02-241-7/+7
| |
* | More robust new test tcltest-9.5dgp2005-02-241-7/+9
| |
* | * library/tcltest/tcltest.tcl: Better use of [glob -types] to avoiddgp2005-02-246-27/+47
| | | | | | | | | | | | | | | | | | * tests/tcltest.test: failed attempts to [source] a directory, and similar matters. Thanks to "mpettigr". [Bug 1119798] * library/tcltest/pkgIndex.tcl: Bump to tcltest 2.2.8 * unix/Makefile.in: * win/Makefile.in:
* | Formatting typo [Bug 1149605]dkf2005-02-232-2/+6
| |
* | * win/tclWinFCmd.c (TraverseWinTree): use wcslen on wchar, nothobbs2005-02-172-6/+11
| | | | | | | | Tcl_UniCharLen.
* | * /doc/variable.n: fix for [Bug 1124160], variables are detectedMiguel Sofer2005-02-162-2/+7
| | | | | | | | by [info vars] but not by [info locals].
* | * unix/Makefile.in: remove SHLIB_LD_FLAGS (only for AIX, inlinedhobbs2005-02-114-1077/+2344
| | | | | | | | | | | | * unix/tcl.m4: into SHLIB_LD). Combine AIX-* and AIX-5 * unix/configure: branches in SC_CONFIG_CFLAGS. Correct gcc builds for AIX-4+ and HP-UX-11. autoconf-2.59 gen'd.
* | * tests/basic.test (basic-26.3): new testMiguel Sofer2005-02-112-2/+25
| |
* | * generic/tclBasic.c (Tcl_EvalObjEx):Miguel Sofer2005-02-103-6/+47
| | | | | | | | | | | | * tests/basic.test (basic-26.2): preserve the arguments passed to TEOV in the pure-list branch, in case the list shimmers away. Fix for [Bug 1119369], reported by Peter MacDonald.
* | fix to test suite failuresvincentdarley2005-02-102-3/+17
| |
* | More consistency. [Bug 1117017]dkf2005-02-102-6/+15
| |
* | * doc/CrtChannel.3: Typo: return->returns.davidw2005-02-082-2/+6
| |
* | * doc/Thread.3: One-word grammar fix.davidw2005-02-062-2/+6
| |
* | * doc/Thread.3: Fixed sentence describing flags for Tcl_CreateThread.davidw2005-02-05