1
0
Çatalla 0

Fix newly-introduced crash under Windows

ref #14
Bu işleme şunda yer alıyor:
Virgil Dupras 2017-08-07 22:51:37 -04:00
ebeveyn 75a9cd6b55
işleme 3071684f73
1 değiştirilmiş dosya ile 3 ekleme ve 1 silme

Dosyayı Görüntüle

@ -11,7 +11,9 @@ PY3 = sys.version_info[0] >= 3
if PY3:
text_type = str
binary_type = bytes
environb = os.environb
if os.supports_bytes_environ:
# environb will be unset under Windows, but then again we're not supposed to use it.
environb = os.environb
else:
text_type = unicode
binary_type = str