Merge pull request #4341 from hugovk/patch-1

Python 3.7 not officially supported yet
This commit is contained in:
Nate Prewitt
2017-10-15 13:35:52 -07:00
committed by GitHub
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.7, 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