summaryrefslogtreecommitdiff
path: root/Python/fileutils.c
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2013-03-24 15:21:57 -0700
committerRaymond Hettinger <python@rcn.com>2013-03-24 15:21:57 -0700
commit579084247b8b12d2d8ec3faa98ae60e7bd5dcfab (patch)
tree30c07db6430d8d82091a73757b4194cd6d6328a7 /Python/fileutils.c
parentbbca631b3d681c2c81534d14e9bb746c3bb7c92b (diff)
parent86b17240c2e8176ba8ef55e39bf3b7d10914d8e4 (diff)
downloadcpython-579084247b8b12d2d8ec3faa98ae60e7bd5dcfab.tar.gz
merge
Diffstat (limited to 'Python/fileutils.c')
-rw-r--r--Python/fileutils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/fileutils.c b/Python/fileutils.c
index b7c42e8e85..3c04e4969e 100644
--- a/Python/fileutils.c
+++ b/Python/fileutils.c
@@ -60,7 +60,7 @@ extern int _Py_normalize_encoding(const char *, char *, size_t);
workaround is also enabled on error, for example if getting the locale
failed.
- Values of locale_is_ascii:
+ Values of force_ascii:
1: the workaround is used: _Py_wchar2char() uses
encode_ascii_surrogateescape() and _Py_char2wchar() uses
@@ -292,7 +292,7 @@ _Py_char2wchar(const char* arg, size_t *size)
/* Only use the result if it contains no
surrogate characters. */
for (tmp = res; *tmp != 0 &&
- (*tmp < 0xd800 || *tmp > 0xdfff); tmp++)
+ !Py_UNICODE_IS_SURROGATE(*tmp); tmp++)
;
if (*tmp == 0) {
if (size != NULL)
@@ -338,7 +338,7 @@ _Py_char2wchar(const char* arg, size_t *size)
memset(&mbs, 0, sizeof mbs);
continue;
}
- if (*out >= 0xd800 && *out <= 0xdfff) {
+ if (Py_UNICODE_IS_SURROGATE(*out)) {
/* Surrogate character. Escape the original
byte sequence with surrogateescape. */
argsize -= converted;