diff options
| author | Takayuki Shimizukawa <shimizukawa@gmail.com> | 2014-05-27 23:17:36 +0900 |
|---|---|---|
| committer | Takayuki Shimizukawa <shimizukawa@gmail.com> | 2014-05-27 23:17:36 +0900 |
| commit | 6746c83a188e208041e0463c4e3fc5fb15316b07 (patch) | |
| tree | 26c73702b2aa46d342051c4039be87e4d4160430 /tests/test_quickstart.py | |
| parent | a335414b8176b269181fe0d5fd2d9906b1a94938 (diff) | |
| download | sphinx-git-6746c83a188e208041e0463c4e3fc5fb15316b07.tar.gz | |
* Drop Python-3.2. And now, removing 2to3 mechanism procedure has been completed. Closes #1350.
Pygments-2.0 will drop Python-3.2.
The snowballstemmer package that is referred from sphinx-1.3 (that is merged at pull request #214) has not supported Python-3.2.
We decided to drop the Python-3.2.
see also https://bitbucket.org/birkenfeld/sphinx/pull-request/243/native-py2-py3-support-without-2to3-refs
Diffstat (limited to 'tests/test_quickstart.py')
| -rw-r--r-- | tests/test_quickstart.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_quickstart.py b/tests/test_quickstart.py index 901d8ccd9..74deb46d3 100644 --- a/tests/test_quickstart.py +++ b/tests/test_quickstart.py @@ -61,8 +61,8 @@ def teardown_module(): def test_quickstart_inputstrip(): d = {} answers = { - 'Q1': 'Y\r', # input() return with '\r' on Python-3.2.0 for Windows - 'Q2': ' Yes \r', + 'Q1': 'Y', + 'Q2': ' Yes ', 'Q3': 'N', 'Q4': 'N ', } |
