mirror of https://github.com/python/cpython.git
Merge 3.2 #14929
This commit is contained in:
commit
c6aa93cf22
|
@ -81,7 +81,7 @@ def grep_it(self, prog, path):
|
||||||
hits = 0
|
hits = 0
|
||||||
for fn in list:
|
for fn in list:
|
||||||
try:
|
try:
|
||||||
f = open(fn)
|
f = open(fn, errors='replace')
|
||||||
except IOError as msg:
|
except IOError as msg:
|
||||||
print(msg)
|
print(msg)
|
||||||
continue
|
continue
|
||||||
|
|
|
@ -49,6 +49,9 @@ Core and Builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Issue14929: Stop Idle 3.x from closing on Unicode decode errors when grepping.
|
||||||
|
Patch by Roger Serwy.
|
||||||
|
|
||||||
- Issue #12515: email now registers a defect if it gets to EOF while parsing
|
- Issue #12515: email now registers a defect if it gets to EOF while parsing
|
||||||
a MIME part without seeing the closing MIME boundary.
|
a MIME part without seeing the closing MIME boundary.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue