From bb5c93a21708cd2877147a122970ef4221951754 Mon Sep 17 00:00:00 2001 From: Eklavya Sharma Date: Wed, 18 May 2016 09:58:45 +0530 Subject: [PATCH] Add __version__ to requests (#206) --- third_party/2.7/requests/__init__.pyi | 1 + third_party/3/requests/__init__.pyi | 1 + 2 files changed, 2 insertions(+) diff --git a/third_party/2.7/requests/__init__.pyi b/third_party/2.7/requests/__init__.pyi index 6ea56efcc..a42d186a2 100644 --- a/third_party/2.7/requests/__init__.pyi +++ b/third_party/2.7/requests/__init__.pyi @@ -12,6 +12,7 @@ __title__ = ... # type: Any __build__ = ... # type: Any __license__ = ... # type: Any __copyright__ = ... # type: Any +__version__ = ... # type: Any Request = models.Request Response = models.Response diff --git a/third_party/3/requests/__init__.pyi b/third_party/3/requests/__init__.pyi index 173481a1c..a89d4a078 100644 --- a/third_party/3/requests/__init__.pyi +++ b/third_party/3/requests/__init__.pyi @@ -12,6 +12,7 @@ __title__ = ... # type: Any __build__ = ... # type: Any __license__ = ... # type: Any __copyright__ = ... # type: Any +__version__ = ... # type: Any Request = models.Request Response = models.Response