summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-05-10 17:13:20 (GMT)
committerGeorg Brandl <georg@python.org>2006-05-10 17:13:20 (GMT)
commit195648000cd704e9d50dee0e7f082f3eb74d3bd3 (patch)
treef973294083136b57fee18c3a441ab296774e05a7 /Misc
parent38c6a22f38a249d107691a79f2b16a62ba8c73be (diff)
downloadcpython-195648000cd704e9d50dee0e7f082f3eb74d3bd3.zip
cpython-195648000cd704e9d50dee0e7f082f3eb74d3bd3.tar.gz
cpython-195648000cd704e9d50dee0e7f082f3eb74d3bd3.tar.bz2
Patch #721464: pdb.Pdb instances can now be given explicit stdin and
stdout arguments, making it possible to redirect input and output for remote debugging.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 401f5d9..4e1aa9e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -96,6 +96,10 @@ Extension Modules
Library
-------
+- Patch #721464: pdb.Pdb instances can now be given explicit stdin and
+ stdout arguments, making it possible to redirect input and output
+ for remote debugging.
+
- Patch #1484695: Update the tarfile module to version 0.8. This fixes
a couple of issues, notably handling of long file names using the
GNU LONGNAME extension.
83_84 Tcl is a high-level, general-purpose, interpreted, dynamic programming language. It was designed with the goal of being very simple but powerful.
summaryrefslogtreecommitdiffstats
path: root/win
Commit message (Collapse)AuthorAgeFilesLines
...
* Modify aclocal.m4 for PC to run cygpath on path of CC_EXENAME first.redman1999-06-171-1/+1
|
* more incremental changessurles1999-06-163-22/+57
|
* added tclConfig.sh.in for Windowssurles1999-06-161-0/+171
|
* merged unix and windows stylessurles1999-06-163-27/+43
|
* modified files to work with new windows Makefilessurles1999-06-164-95/+129
|
* Fix DDE code to reinitialize with new servername.redman1999-06-161-1/+6
|
* Merged String and Unicode object types. Added new functions tohershey1999-06-152-4/+2
| | | | | | | | | the puplic API: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj, Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange, Tcl_AppendUnicodeToObj. Note: some stringObj tests are still failing--the teststringobj command still needs to be updated.
* Continued work on configure and make scriptssurles1999-06-111-18/+18
|
* Continued work on configure and make scriptssurles1999-06-114-1653/+736
|
* macros that autoconf will be looking for (tcl.m4)wart1999-06-101-0/+875
|
* Modified configure.in that uses the tcl.m4 macroswart1999-06-101-47/+9
|
* First pass at Windows Tcl autoconf macroswart1999-06-101-0/+865
|
* * win/tclWinSock.c: Rolled back to the 8.1.0 implementationstanton1999-06-081-2674/+2279
| | | | | | because of serious problems with the new driver. Basically no incoming socket connections would be reported to a server port. The 8.1.1 code needs to be redesigned and fixed correctly.
* * tests/string.test:hershey1999-06-082-2/+4
| | | | | | | | | | | | | | | | | | | | | | | * generic/tclVar.c (Tcl_SetVar2Ex): * generic/tclStringObj.c (Tcl_AppendObjToObj): * generic/tclCmdMZ.c (Tcl_StringObjCmd): optimized the string index, string length, string range, and append command in cases where the object's internal rep is a bytearray. Objects with other internal reps are converted to have the new unicode internal rep. * unix/Makefile.in: * win/Makefile.in: * win/Makefile.vc: * tests/unicode.test: * generic/tclInt.h: * generic/tclObj.c: * generic/tclUnicodeObj.c: added a new object type to store the unicode representation of a string. * generic/tclTestObj.c: added the objtype option to the testobj command. This option returns the name of the type of internal rep an object has.
* * win/configure.in:stanton1999-06-052-114/+113
| | | | | | * win/Makefile.in: Windows build now handles static/dynamic debug/nodebug builds and supports the standard targets using Cygwin user tools plus GNU make and autoconf.
* Added makefile targets and configure switches to be TEA compliantsurles1999-06-022-73/+271
|
* * win/Makefile.in:stanton1999-05-282-0/+411
| | | | * win/configure.in: Added preliminary TEA implementation.
* * win/tclWinDde.c: Fixed bug where dde calls were being passed anstanton1999-05-281-11/+17
| | | | | invalid dde handle because Initialize had not been called. [Bug: 2124]
* generic/tclThreadTest.c: Fix race condition in testthread code.redman1999-05-261-10/+21
| | | | | | win/tclWinSock.c: Fixed hang in WinNT socket driver, now wakes up the socket thread to check for events that didn't trigger the WSAEvent.
* Merged changes from scriptics-tclpro-1-3-b2 branchstanton1999-05-221-5/+25
|
* Fix command.com bug on Windows 95/98. [Bug: 2105]redman1999-05-211-2/+2
|
* * win/tclWinInit.c (TclpSetVariables): Avoid calling GetUserNamestanton1999-05-131-6/+12
| | | | | if the value can be determined from the USERNAME environment variable. GetUserName is very slow.
* removed bad patchstanton1999-05-072-4/+3
|
* * win/winDumpExts.c:stanton1999-05-072-5/+5
| | | | | * win/makefile.vc: Changed to emit library name in defs file. [Bug: 1998]
* * win/makefile.vc: Added encoding directory to install-librariesstanton1999-05-051-1/+4
| | | | target.
* * Changed version to 8.1.1.stanton1999-04-302-6/+7
|
* * Merged changes from 8.1.0 branchstanton1999-04-303-9/+13
|
* merged 8.1.0 changes into mainlinestanton1999-04-242-425/+74
|
* * win/tclWinInit.c (TclpInitPlatform): Added call to TclWinInitstanton1999-04-231-1/+11
| | | | | | when building a static library since DllMain will not be invoked. This could break old code that explicitly called TclWinInit, but should be simpler in the long run.
* * win/tclWinFCmd.c:stanton1999-04-232-8/+8
| | | | | | * win/tclWin32Dll.c: Changed uses of "try" to "__try", since that is the actual keyword. This eliminates the need for some -D flags from the makefile.
* Improved socket driver, use WSAEventSelect on NTredman1999-04-222-124/+508
|
* * win/tclWinInit.c:stanton1999-04-211-5/+48
| | | | | * unix/tclUnixInit.c: Changed initial search path to match that found used by tcl_findLibrary.
* Resynced with mainline.rjohnson1999-04-21