- 06 May, 2015 1 kayıt (commit)
-
-
Berker Peksag yazdı
Patch by Christie Wilson.
-
- 14 Nis, 2015 1 kayıt (commit)
-
-
R David Murray yazdı
Patch by Jamiel Almeida.
-
- 08 Mar, 2015 1 kayıt (commit)
-
-
Steve Dower yazdı
-
- 04 Şub, 2015 1 kayıt (commit)
-
-
Gregory P. Smith yazdı
interpreter under test is being run in an environment that requires the use of environment variables such as PYTHONHOME in order to function at all. Adds a private test.script_helper._interpreter_requires_environment() function to be used with @unittest.skipIf on stdlib test methods requiring this.
-
- 23 Ock, 2015 2 kayıt (commit)
-
-
Gregory P. Smith yazdı
*any* kwarg supplied to _assert_python causes it to not append -E to the command line flags so without='-E' does effectively work.
-
Gregory P. Smith yazdı
script_helper.assert_python_failure(). No such feature has ever existed, thus it doesn't do what the comment claims. (It does add a 'without' variable to the environment of the child process but that was not intended)
-
- 12 Eki, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 10 Agu, 2013 1 kayıt (commit)
-
-
Christian Heimes yazdı
-I Run Python in isolated mode. This also implies -E and -s. In isolated mode sys.path contains neither the script’s directory nor the user’s site-packages directory. All PYTHON* environment variables are ignored, too. Further restrictions may be imposed to prevent the user from injecting malicious code.
-
- 11 Tem, 2013 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
not to stderr. Patch by Berker Peksag and Michael Dickens.
-
- 25 Haz, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
(test.regrtest and test.script_helper enable faulthandler module in subprocesses).
-
- 26 Mar, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 25 Mar, 2013 1 kayıt (commit)
-
-
Ezio Melotti yazdı
#17323: The "[X refs, Y blocks]" printed by debug builds has been disabled by default. It can be re-enabled with the `-X showrefcount` option.
-
- 03 Ock, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
TESTFN_NONASCII of test.support from Python 3.4. Backport tests on non-ASCII paths.
-
- 23 Kas, 2012 3 kayıt (commit)
-
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
- 22 Kas, 2012 1 kayıt (commit)
-
-
Ezio Melotti yazdı
-
- 18 Kas, 2012 2 kayıt (commit)
-
-
Ezio Melotti yazdı
#16306: Fix multiple error messages when unknown command line parameters where passed to the interpreter. Patch by Hieu Nguyen.
-
Ezio Melotti yazdı
#16306: Fix multiple error messages when unknown command line parameters where passed to the interpreter. Patch by Hieu Nguyen.
-
- 12 Kas, 2012 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 07 Kas, 2012 2 kayıt (commit)
-
-
Hynek Schlawack yazdı
Patch by Victor Stinner.
-
Hynek Schlawack yazdı
Patch by Victor Stinner.
-
- 06 Kas, 2012 1 kayıt (commit)
-
-
Victor Stinner yazdı
These constants are used to test functions with non-ASCII data, especially filenames.
-
- 03 Kas, 2012 2 kayıt (commit)
-
-
Andrew Svetlov yazdı
Patch by Alon Horev with update by Alexey Kachayev.
-
Andrew Svetlov yazdı
Thanks to Armin Rigo and Alexey Kachayev.
-
- 03 Agu, 2012 2 kayıt (commit)
-
-
Victor Stinner yazdı
sys.stdout and sys.stderr are now using "\r\n" newline on Windows, as Python 2.
-
Victor Stinner yazdı
sys.stdout and sys.stderr are now using "\r\n" newline on Windows, as Python 2.
-
- 21 Şub, 2012 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Barry Warsaw yazdı
environment variable, to provide an opt-in way to protect against denial of service attacks due to hash collisions within the dict and set types. Patch by David Malcolm, based on work by Victor Stinner.
-
- 20 Şub, 2012 1 kayıt (commit)
-
-
Georg Brandl yazdı
in order to make algorithmic complexity attacks on (e.g.) web apps much more complicated. The environment variable PYTHONHASHSEED and the new command line flag -R control this behavior.
-
- 28 Kas, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
It was already the case with Python 2. However, the corresponding sys module entries are now set to None (instead of an unusable file object).
-
- 26 Kas, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Issue #13444: When stdout has been closed explicitly, we should not attempt to flush it at shutdown and print an error. This also adds a test for issue #5319, whose resolution introduced the issue.
-
- 24 Haz, 2011 1 kayıt (commit)
-
-
R David Murray yazdı
Patch by Francisco Martín Brugué.
-
- 26 Mar, 2011 1 kayıt (commit)
-
-
Éric Araujo yazdı
-
- 25 Şub, 2011 1 kayıt (commit)
-
-
Marc-André Lemburg yazdı
'latin-1' and 'utf-8'. These are optimized in the Python Unicode implementation to result in more direct processing, bypassing the codec registry. Also see issue11303.
-
- 23 Şub, 2011 2 kayıt (commit)
-
-
Victor Stinner yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88530 | victor.stinner | 2011-02-23 13:07:37 +0100 (mer., 23 févr. 2011) | 4 lines Issue #11272: Fix input() and sys.stdin for Windows newline On Windows, input() strips '\r' (and not only '\n'), and sys.stdin uses universal newline (replace '\r\n' by '\n'). ........
-
Victor Stinner yazdı
On Windows, input() strips '\r' (and not only '\n'), and sys.stdin uses universal newline (replace '\r\n' by '\n').
-
- 04 Ara, 2010 1 kayıt (commit)
-
-
Victor Stinner yazdı
UnicodeEncodeError.
-
- 09 Kas, 2010 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 01 Kas, 2010 1 kayıt (commit)
-
-
Brian Curtin yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86081 | brian.curtin | 2010-11-01 09:00:33 -0500 (Mon, 01 Nov 2010) | 2 lines Close subprocess pipes to clear ResourceWarning messages in debug mode. ........
-