summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-01-11 10:12:32 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-01-11 10:12:32 (GMT)
commit9942e5a9cf4054591134e2495d50615faebe3662 (patch)
treef1d5e4ffc6e4accdce9c041d2342ed59612f46ea /Misc
parent14af64fb381684827da63ab8fc25fdc94010ef71 (diff)
parent40ce22edb5358cf8642de0faa2c53321dddf5961 (diff)
downloadcpython-9942e5a9cf4054591134e2495d50615faebe3662.zip
cpython-9942e5a9cf4054591134e2495d50615faebe3662.tar.gz
cpython-9942e5a9cf4054591134e2495d50615faebe3662.tar.bz2
Issue #15539: Fix a number of bugs in Tools/scripts/pindent.py.
Now pindent.py works with a "with" statement. pindent.py no longer produces improper indentation. pindent.py now works with continued lines broken after "class" or "def" keywords and with continuations at the start of line. Added regression tests for pindent.py. Modernized pindent.py.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f1f3039..691d727 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -621,6 +621,8 @@ Extension Modules
Tests
-----
+- Issue #15539: Added regression tests for Tools/scripts/pindent.py.
+
- Issue #16836: Enable IPv6 support even if IPv6 is disabled on the build host.
- Issue #16925: test_configparser now works with unittest test discovery.
@@ -777,6 +779,11 @@ Documentation
Tools/Demos
-----------
+- Issue #15539: Fix a number of bugs in Tools/scripts/pindent.py. Now
+ pindent.py works with a "with" statement. pindent.py no longer produces
+ improper indentation. pindent.py now works with continued lines broken after
+ "class" or "def" keywords and with continuations at the start of line.
+
- Issue #11797: Add a 2to3 fixer that maps reload() to imp.reload().
- Issue #10966: Remove the concept of unexpected skipped tests.