diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-03-31 13:40:14 +0200 |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-03-31 13:40:14 +0200 |
commit | dd810ddb65870875e0312c04adcf2275ffbd0e17 (patch) | |
tree | c9a6284346447475817a96cefe6e064c49be0fc3 | |
parent | 05585cbdc828dc47a30237003e80ad7d4699ff95 (diff) | |
parent | 27181ac778fdb8432d79f280922eac0f70af5194 (diff) | |
download | cpython-git-dd810ddb65870875e0312c04adcf2275ffbd0e17.tar.gz |
Merge 3.2: sys.getfilesystemencoding() raises a RuntimeError if
initfsencoding() was not called yet: detect bootstrap (startup) issues earlier.
-rw-r--r-- | Misc/NEWS | 3 | ||||
-rw-r--r-- | Python/sysmodule.c | 5 |
2 files changed, 6 insertions, 2 deletions
@@ -87,6 +87,9 @@ Core and Builtins Library ------- +- sys.getfilesystemencoding() raises a RuntimeError if initfsencoding() was not + called yet: detect bootstrap (startup) issues earlier. + - Issue #11393: Add the new faulthandler module. - Issue #11618: Fix the timeout logic in threading.Lock.acquire() under Windows. diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 33255ad72e..fdf361fa8b 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -259,8 +259,9 @@ sys_getfilesystemencoding(PyObject *self) { if (Py_FileSystemDefaultEncoding) return PyUnicode_FromString(Py_FileSystemDefaultEncoding); - Py_INCREF(Py_None); - return Py_None; + PyErr_SetString(PyExc_RuntimeError, + "filesystem encoding is not initialized"); + return NULL; } PyDoc_STRVAR(getfilesystemencoding_doc, |