- 02 Mar, 2017 7 commits
-
-
Alex Gaynor authored
-
Christian Heimes authored
The curses module used mkstemp() + fopen() to create a temporary file in /tmp. The /tmp directory does not exist on Android. The tmpfile() function simplifies the task a lot. It creates a temporary file in a correct directory, takes care of cleanup and returns FILE*. tmpfile is supported on all platforms (C89, POSIX 2001, Android, Windows). Signed-off-by: Christian Heimes <christian@python.org>
-
Benjamin Peterson authored
-
Benjamin Peterson authored
The way mocking is written in these tests, we need to have the underlying function around.
-
Benjamin Peterson authored
#157 added the test, but it's currently (correctly) broken on windows.
-
Benjamin Peterson authored
If ctypes is not available, _uuid_generate_time will be None not its restype attribute.
-
Benjamin Peterson authored
This reverts commit 43f5df5b.
-
- 01 Mar, 2017 13 commits
-
-
Brett Cannon authored
He's written so much code he gets mentioned **a lot**.
-
Lev Abalkin authored
This change is required to make python-dbg.py compatible with GDB versions before 7.3.
-
Petr Motejlek authored
(or any other exception) to exception(s) raised in the dispatched methods. Patch by Petr Motejlek.
-
Mariatta authored
-
INADA Naoki authored
It should raise TypeError when kwargs is not a dict.
-
Berker Peksag authored
* Document STARTUPINFO constructor * Move versionchanged directive to above of attributes
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
Windows uses backslashes for separators.
-
amosonn authored
Moved explicit raise from inside try to try...else.
-
Berker Peksag authored
-
Alex Gaynor authored
-
- 28 Feb, 2017 6 commits
-
-
Kartik Anand authored
-
Donald Stufft authored
Discussed at https://github.com/python/core-workflow/issues/32.
-
Xiang Zhang authored
-
INADA Naoki authored
-
Evan Klitzke authored
-
Xiang Zhang authored
-
- 27 Feb, 2017 6 commits
-
-
Berker Peksag authored
-
Berker Peksag authored
-
Mariatta authored
-
INADA Naoki authored
reported by Alexis Lopez-Garcia.
-
Xiang Zhang authored
-
Xiang Zhang authored
-
- 26 Feb, 2017 8 commits
-
-
Mariatta authored
-
Sayan Chowdhury authored
-
Mariatta authored
Mention that an ImportError is raised when exec_module() is defined, but create_module() is not.
-
Berker Peksag authored
Patch by Aviv Palivoda.
-
Marco Buttu authored
-
Berker Peksag authored
Patch by Aviv Palivoda.
-
Marco Buttu authored
Add a reference to create_module(), in the first versionadded of section Loaders.
-
INADA Naoki authored
follow up of GH-162
-