summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-01-09 20:38:15 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-01-09 20:38:15 (GMT)
commita4815caa7ccf21aa994d0e0eec66873072f0e352 (patch)
tree5ccb44937ddfdd59ebae4590d2f4cfc05dcced3d /Misc
parenta6c91f5e3b013be1447454b3a479d6fabbf16806 (diff)
downloadcpython-a4815caa7ccf21aa994d0e0eec66873072f0e352.zip
cpython-a4815caa7ccf21aa994d0e0eec66873072f0e352.tar.gz
cpython-a4815caa7ccf21aa994d0e0eec66873072f0e352.tar.bz2
Issue #10872: The repr() of TextIOWrapper objects now includes the mode
if available. (at Georg's request)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2b2c283..d162c5d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,6 +40,9 @@ Core and Builtins
Library
-------
+- Issue #10872: The repr() of TextIOWrapper objects now includes the mode
+ if available.
+
- Issue #10869: Fixed bug where ast.increment_lineno modified the root
node twice.