mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 09:56:17 +03:00
Merge pull request #276 from wiredfool/whitespace
ignore high ascii characters in string.whitespace
This commit is contained in:
commit
e5ead08324
|
@ -24,7 +24,7 @@ from PIL import Image, ImageFile
|
||||||
#
|
#
|
||||||
# --------------------------------------------------------------------
|
# --------------------------------------------------------------------
|
||||||
|
|
||||||
b_whitespace = string.whitespace.encode()
|
b_whitespace = string.whitespace.encode('ascii','ignore')
|
||||||
|
|
||||||
MODES = {
|
MODES = {
|
||||||
# standard
|
# standard
|
||||||
|
|
31
Tests/test_locale.py
Normal file
31
Tests/test_locale.py
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
from tester import *
|
||||||
|
from PIL import Image
|
||||||
|
|
||||||
|
import locale
|
||||||
|
|
||||||
|
# ref https://github.com/python-imaging/Pillow/issues/272
|
||||||
|
## on windows, in polish locale:
|
||||||
|
|
||||||
|
## import locale
|
||||||
|
## print locale.setlocale(locale.LC_ALL, 'polish')
|
||||||
|
## import string
|
||||||
|
## print len(string.whitespace)
|
||||||
|
## print ord(string.whitespace[6])
|
||||||
|
|
||||||
|
## Polish_Poland.1250
|
||||||
|
## 7
|
||||||
|
## 160
|
||||||
|
|
||||||
|
# one of string.whitespace is not freely convertable into ascii.
|
||||||
|
|
||||||
|
path = "Images/lena.jpg"
|
||||||
|
|
||||||
|
def test_sanity():
|
||||||
|
assert_no_exception(lambda: Image.open(path))
|
||||||
|
try:
|
||||||
|
locale.setlocale(locale.LC_ALL, "polish")
|
||||||
|
except:
|
||||||
|
skip('polish locale not available')
|
||||||
|
import string
|
||||||
|
assert_no_exception(lambda: Image.open(path))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user