diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-05-27 18:22:32 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-05-27 19:02:50 +0300 |
commit | 32565ee39be1a9d7be1de934c1dfb424644b346a (patch) | |
tree | a1c92f1023ef8af8a23d1dbc234075c3278fc750 /python3 | |
parent | 992da0d5cf04497bad55637f6a6ebfcdaec03e16 (diff) |
Bump maximum fuzz factor down to zero
Change-Id: I97d30afe3a24aab1123352da05b066095e5c86bb
Diffstat (limited to 'python3')
-rw-r--r-- | python3/python-3.3.0-15833.patch.1 | 3 | ||||
-rw-r--r-- | python3/python-3.3.0-i42553.patch.2 | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/python3/python-3.3.0-15833.patch.1 b/python3/python-3.3.0-15833.patch.1 index 71cef94535b1..7cb845f07312 100644 --- a/python3/python-3.3.0-15833.patch.1 +++ b/python3/python-3.3.0-15833.patch.1 @@ -23,3 +23,6 @@ iff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py + except OSError as exc: + # Same as above: just don't write the bytecode. + _verbose_message('could not create {!r}: {!r}', path, exc) + + + class SourcelessFileLoader(FileLoader, _LoaderBasics): diff --git a/python3/python-3.3.0-i42553.patch.2 b/python3/python-3.3.0-i42553.patch.2 index 324d0712c84f..21145227cc1e 100644 --- a/python3/python-3.3.0-i42553.patch.2 +++ b/python3/python-3.3.0-i42553.patch.2 @@ -15,3 +15,4 @@ Author: taniguchi@openoffice.org - #ifdef HAVE__GETPTY #include <sys/types.h> /* we need to import mode_t */ + extern char * _getpty(int *, int, mode_t, int); |