From 6061ca404e6d4dc072e7f7f84ec1ca7f1456b40a Mon Sep 17 00:00:00 2001 From: Mathieu Bridon Date: Wed, 29 May 2019 15:45:46 +0200 Subject: [PATCH] Move Redis stubs to 2and3 (#3015) They actually work for both Python 2 and 3, mostly because they aren't really typed yet. --- third_party/{2 => 2and3}/redis/__init__.pyi | 0 third_party/{2 => 2and3}/redis/client.pyi | 0 third_party/{2 => 2and3}/redis/connection.pyi | 0 third_party/{2 => 2and3}/redis/exceptions.pyi | 0 third_party/{2 => 2and3}/redis/utils.pyi | 0 5 files changed, 0 insertions(+), 0 deletions(-) rename third_party/{2 => 2and3}/redis/__init__.pyi (100%) rename third_party/{2 => 2and3}/redis/client.pyi (100%) rename third_party/{2 => 2and3}/redis/connection.pyi (100%) rename third_party/{2 => 2and3}/redis/exceptions.pyi (100%) rename third_party/{2 => 2and3}/redis/utils.pyi (100%) diff --git a/third_party/2/redis/__init__.pyi b/third_party/2and3/redis/__init__.pyi similarity index 100% rename from third_party/2/redis/__init__.pyi rename to third_party/2and3/redis/__init__.pyi diff --git a/third_party/2/redis/client.pyi b/third_party/2and3/redis/client.pyi similarity index 100% rename from third_party/2/redis/client.pyi rename to third_party/2and3/redis/client.pyi diff --git a/third_party/2/redis/connection.pyi b/third_party/2and3/redis/connection.pyi similarity index 100% rename from third_party/2/redis/connection.pyi rename to third_party/2and3/redis/connection.pyi diff --git a/third_party/2/redis/exceptions.pyi b/third_party/2and3/redis/exceptions.pyi similarity index 100% rename from third_party/2/redis/exceptions.pyi rename to third_party/2and3/redis/exceptions.pyi diff --git a/third_party/2/redis/utils.pyi b/third_party/2and3/redis/utils.pyi similarity index 100% rename from third_party/2/redis/utils.pyi rename to third_party/2and3/redis/utils.pyi