diff options
author | Takayuki Shimizukawa <shimizukawa@gmail.com> | 2013-12-15 14:16:53 +0900 |
---|---|---|
committer | Takayuki Shimizukawa <shimizukawa@gmail.com> | 2013-12-15 14:16:53 +0900 |
commit | a8fc938d1b9fb1be7979da8b8236aba287fc082e (patch) | |
tree | 751d6a1e72f6a59fd036eac63cf01d3c708857a7 /sphinx/quickstart.py | |
parent | 95a07fe282a084862daca26a0ed781ab498395a8 (diff) | |
download | sphinx-git-a8fc938d1b9fb1be7979da8b8236aba287fc082e.tar.gz |
Drop python-2.5 and remove 2.4,2.5 support codes
Diffstat (limited to 'sphinx/quickstart.py')
-rw-r--r-- | sphinx/quickstart.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/quickstart.py b/sphinx/quickstart.py index a4dca3333..5733b34b5 100644 --- a/sphinx/quickstart.py +++ b/sphinx/quickstart.py @@ -11,6 +11,7 @@ import sys, os, time, re from os import path +from io import open TERM_ENCODING = getattr(sys.stdin, 'encoding', None) @@ -21,7 +22,6 @@ from sphinx.util.osutil import make_filename from sphinx.util.console import purple, bold, red, turquoise, \ nocolor, color_terminal from sphinx.util import texescape -from sphinx.util.pycompat import open # function to get input from terminal -- overridden by the test suite try: |