Python 3.3 has already been dropped (#4231)

This commit is contained in:
Hugo
2017-10-15 20:04:51 +03:00
parent 4316af7ae8
commit ec5804c706
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ Requests is ready for today's web.
- ``.netrc`` Support
- Chunked Requests
Requests officially supports Python 2.62.7 & 3.33.6, and runs great on PyPy.
Requests officially supports Python 2.62.7 & 3.43.6, and runs great on PyPy.
Installation
------------
+1 -1
View File
@@ -39,7 +39,7 @@ from .models import REDIRECT_STATI
# Preferred clock, based on which one is more accurate on a given system.
if platform.system() == 'Windows':
try: # Python 3.3+
try: # Python 3.4+
preferred_clock = time.perf_counter
except AttributeError: # Earlier than Python 3.
preferred_clock = time.clock