From e4ba943860fbf4f1386779cac89e3f786c4329d1 Mon Sep 17 00:00:00 2001 From: Sebastian Rittau Date: Fri, 4 Oct 2019 22:24:13 +0200 Subject: [PATCH] Move cryptography from 2 to 2and3 The cryptography stubs are very rudimentary at the moment, but there is nothing that limits them to just Python 2. Closes: #3303 --- third_party/{2 => 2and3}/cryptography/__init__.pyi | 0 third_party/{2 => 2and3}/cryptography/hazmat/__init__.pyi | 0 .../{2 => 2and3}/cryptography/hazmat/primitives/__init__.pyi | 0 .../cryptography/hazmat/primitives/asymmetric/__init__.pyi | 0 .../cryptography/hazmat/primitives/asymmetric/dsa.pyi | 0 .../cryptography/hazmat/primitives/asymmetric/rsa.pyi | 0 .../{2 => 2and3}/cryptography/hazmat/primitives/serialization.pyi | 0 7 files changed, 0 insertions(+), 0 deletions(-) rename third_party/{2 => 2and3}/cryptography/__init__.pyi (100%) rename third_party/{2 => 2and3}/cryptography/hazmat/__init__.pyi (100%) rename third_party/{2 => 2and3}/cryptography/hazmat/primitives/__init__.pyi (100%) rename third_party/{2 => 2and3}/cryptography/hazmat/primitives/asymmetric/__init__.pyi (100%) rename third_party/{2 => 2and3}/cryptography/hazmat/primitives/asymmetric/dsa.pyi (100%) rename third_party/{2 => 2and3}/cryptography/hazmat/primitives/asymmetric/rsa.pyi (100%) rename third_party/{2 => 2and3}/cryptography/hazmat/primitives/serialization.pyi (100%) diff --git a/third_party/2/cryptography/__init__.pyi b/third_party/2and3/cryptography/__init__.pyi similarity index 100% rename from third_party/2/cryptography/__init__.pyi rename to third_party/2and3/cryptography/__init__.pyi diff --git a/third_party/2/cryptography/hazmat/__init__.pyi b/third_party/2and3/cryptography/hazmat/__init__.pyi similarity index 100% rename from third_party/2/cryptography/hazmat/__init__.pyi rename to third_party/2and3/cryptography/hazmat/__init__.pyi diff --git a/third_party/2/cryptography/hazmat/primitives/__init__.pyi b/third_party/2and3/cryptography/hazmat/primitives/__init__.pyi similarity index 100% rename from third_party/2/cryptography/hazmat/primitives/__init__.pyi rename to third_party/2and3/cryptography/hazmat/primitives/__init__.pyi diff --git a/third_party/2/cryptography/hazmat/primitives/asymmetric/__init__.pyi b/third_party/2and3/cryptography/hazmat/primitives/asymmetric/__init__.pyi similarity index 100% rename from third_party/2/cryptography/hazmat/primitives/asymmetric/__init__.pyi rename to third_party/2and3/cryptography/hazmat/primitives/asymmetric/__init__.pyi diff --git a/third_party/2/cryptography/hazmat/primitives/asymmetric/dsa.pyi b/third_party/2and3/cryptography/hazmat/primitives/asymmetric/dsa.pyi similarity index 100% rename from third_party/2/cryptography/hazmat/primitives/asymmetric/dsa.pyi rename to third_party/2and3/cryptography/hazmat/primitives/asymmetric/dsa.pyi diff --git a/third_party/2/cryptography/hazmat/primitives/asymmetric/rsa.pyi b/third_party/2and3/cryptography/hazmat/primitives/asymmetric/rsa.pyi similarity index 100% rename from third_party/2/cryptography/hazmat/primitives/asymmetric/rsa.pyi rename to third_party/2and3/cryptography/hazmat/primitives/asymmetric/rsa.pyi diff --git a/third_party/2/cryptography/hazmat/primitives/serialization.pyi b/third_party/2and3/cryptography/hazmat/primitives/serialization.pyi similarity index 100% rename from third_party/2/cryptography/hazmat/primitives/serialization.pyi rename to third_party/2and3/cryptography/hazmat/primitives/serialization.pyi