summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2004-08-15 14:32:06 (GMT)
committerSkip Montanaro <skip@pobox.com>2004-08-15 14:32:06 (GMT)
commite5069019e7bd33ed5d6072c38ad149694053aaca (patch)
tree5a404b7568ff3c3466d4e3a47928b3921e28edd4 /Misc
parentf0d5f7917e4c6b4acd209573c8f69c3dc5793ffd (diff)
downloadcpython-e5069019e7bd33ed5d6072c38ad149694053aaca.zip
cpython-e5069019e7bd33ed5d6072c38ad149694053aaca.tar.gz
cpython-e5069019e7bd33ed5d6072c38ad149694053aaca.tar.bz2
Add get_history_item and replace_history_item functions to the readline
module. Closes patch #675551. My apologies to Michal Vitecek for taking so long to process this.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS10
1 files changed, 8 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e564c2b..3dfa18a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -44,9 +44,12 @@ Extension modules
Library
-------
+- patch #675551: Add get_history_item and replace_history_item functions
+ to the readline module.
+
- bug #989672: pdb.doc and the help messages for the help_d and help_u methods
-of the pdb.Pdb class gives have been corrected. d(own) goes to a newer frame,
-u(p) to an older frame, not the other way around.
+ of the pdb.Pdb class gives have been corrected. d(own) goes to a newer
+ frame, u(p) to an older frame, not the other way around.
- bug #990669: os.path.realpath() will resolve symlinks before normalizing the
path, as normalizing the path may alter the meaning of the path if it
@@ -82,6 +85,9 @@ Build
- The --with-tsc flag to configure to enable VM profiling with the
processor's timestamp counter now works on PPC platforms.
+- patch #1006629: Define _XOPEN_SOURCE to 500 on Solaris 8/9 to match
+ GCC's definition and avoid redefinition warnings.
+
C API
-----