Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e425908

Browse files
Fix unterminated #if.
1 parent 51365fb commit e425908

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

Include/cpython/unicodeobject.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ Py_UNICODE_FILL(Py_UNICODE *target, Py_UNICODE value, Py_ssize_t length) {
8080
/* low surrogate = bottom 10 bits added to DC00 */
8181
#define Py_UNICODE_LOW_SURROGATE(ch) (0xDC00 + ((ch) & 0x3FF))
8282

83-
#if HAVE_UNICODE_WCHAR_CACHE
8483
/* --- Unicode Type ------------------------------------------------------- */
8584

8685
/* ASCII-only strings created through PyUnicode_New use the PyASCIIObject

0 commit comments

Comments
 (0)