]> granicus.if.org Git - python/commitdiff
Issue #16829: IDLE printing no longer fails if there are spaces or other
authorSerhiy Storchaka <storchaka@gmail.com>
Sat, 12 Jan 2013 16:17:24 +0000 (18:17 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Sat, 12 Jan 2013 16:17:24 +0000 (18:17 +0200)
special characters in the file path.

1  2 
Lib/idlelib/IOBinding.py
Misc/NEWS

Simple merge
diff --cc Misc/NEWS
index 1d085517df8b22256331273464ef26cf91b57f91,1e4dea2f85c596c396e5975d595a207d33c29396..c2a6802002dcbef0ff29d041dc04f35e0d6dd4fa
+++ b/Misc/NEWS
@@@ -217,13 -147,9 +217,16 @@@ Core and Builtin
  Library
  -------
  
+ - Issue #16829: IDLE printing no longer fails if there are spaces or other
+   special characters in the file path.
 +- Issue #15031: Refactor some .pyc management code to cut down on code
 +  duplication. Thanks to Ronan Lamy for the report and taking an initial stab
 +  at the problem.
 +
 +- Issue #16398: Optimize deque.rotate() so that it only moves pointers
 +  and doesn't touch the underlying data with increfs and decrefs.
 +
  - Issue #16900: Issue a ResourceWarning when an ssl socket is left unclosed.
  
  - Issue #13899: \A, \Z, and \B now correctly match the A, Z, and B literals