| Commit message (Collapse) | Author | Age |
... | |
|\ |
|
| |\ |
|
| | | |
|
|\| | |
|
| |\| |
|
| | |
| | |
| | |
| | | |
Serhiy Storchaka.
|
| | | |
|
|\| | |
|
| |\| |
|
| | |
| | |
| | |
| | | |
where passed to the interpreter. Patch by Hieu Nguyen.
|
| | | |
|
|\| |
| | |
| | |
| | | |
Patch by Victor Stinner.
|
| |\|
| | |
| | |
| | | |
Patch by Victor Stinner.
|
| | |
| | |
| | |
| | | |
Patch by Victor Stinner.
|
| | |
| | |
| | |
| | | |
sys.stdout and sys.stderr are now using "\r\n" newline on Windows, as Python 2.
|
| | |
| | |
| | |
| | |
| | | |
These constants are used to test functions with non-ASCII data, especially
filenames.
|
| | |
| | |
| | |
| | | |
Patch by Alon Horev with update by Alexey Kachayev.
|
|/ /
| |
| |
| |
| |
| | |
all.
Thanks to Armin Rigo and Alexey Kachayev.
|
| |
| |
| |
| | |
sys.stdout and sys.stderr are now using "\r\n" newline on Windows, as Python 2.
|
| | |
|
|\| |
|
| |\
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
basic types (str, bytes, datetime)
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.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
bytes, datetime)
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.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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.
........
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r80116 | victor.stinner | 2010-04-16 17:10:27 +0200 (ven., 16 avril 2010) | 2 lines
Issue #7605: Fix test_cmd_line if the current working directory is not ASCII
........
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
svn+ssh://svn.python.org/python/branches/py3k
........
r73715 | benjamin.peterson | 2009-07-01 01:06:06 +0200 (Mi, 01 Jul 2009) | 1 line
convert old fail* assertions to assert*
........
|
|\| |
| | |
| | |
| | |
| | | |
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).
|
| | |
| | |
| | |
| | |
| | | |
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).
|
|\| |
| | |
| | |
| | |
| | |
| | | |
to flush it at shutdown and print an error.
This also adds a test for issue #5319, whose resolution introduced the issue.
|
| | |
| | |
| | |
| | |
| | |
| | | |
to flush it at shutdown and print an error.
This also adds a test for issue #5319, whose resolution introduced the issue.
|
|\| | |
|
| | |
| | |
| | |
| | | |
Patch by Francisco Martín Brugué.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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').
........
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
'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.
|
|/ /
| |
| |
| |
| | |
On Windows, input() strips '\r' (and not only '\n'), and sys.stdin uses
universal newline (replace '\r\n' by '\n').
|
| |
| |
| |
| | |
UnicodeEncodeError.
|
| | |
|
| | |
|
| |
| |
| |
| | |
They can be retrieved through a new attribute `sys._xoptions`.
|
| |
| |
| |
| |
| |
| |
| | |
the locale encoding. If the LANG (and LC_ALL and LC_CTYPE) environment variable
is not set, the locale encoding is ISO-8859-1, whereas most programs (including
Python) expect UTF-8. Python already uses UTF-8 for the filesystem encoding and
to encode command line arguments on this OS.
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
easier writing of unit tests and better error reporting.
|
| |
| |
| |
| | |
module to execute. Also updates all the cmd_line_script tests to validate the setting of sys.path[0] and the current working directory
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78093 | georg.brandl | 2010-02-07 18:03:15 +0100 (So, 07 Feb 2010) | 1 line
Remove unused imports in test modules.
........
|
| |
| |
| |
| | |
A patch from Dave Malcolm.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
76286-76287,76289-76294,76296-76299,76301-76305,76307,76310-76311,76313-76322 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r76286 | nick.coghlan | 2009-11-15 17:30:34 +1000 (Sun, 15 Nov 2009) | 1 line
Issue #6816: expose the zipfile and directory execution mechanism to Python code via the runpy module. Also consolidated some script execution functionality in the test harness into a helper module and removed some implementation details from the runpy module documentation.
........
r76321 | nick.coghlan | 2009-11-16 13:55:51 +1000 (Mon, 16 Nov 2009) | 1 line
Account for another cache when hunting ref leaks
........
r76322 | nick.coghlan | 2009-11-16 13:57:32 +1000 (Mon, 16 Nov 2009) | 1 line
Allow for backslashes in file paths passed to the regex engine
........
|