#1286 Remove header comments from stubs (#1292)

- Updates documentation related to previously required comment headers.
- Removes all comment headers from stubs
- Occasionally included a header for stubs that were noted to be incomplete or contained todo's.
This commit is contained in:
Emily Morehouse
2017-05-22 15:14:15 -07:00
committed by Guido van Rossum
parent a2aa93ac29
commit b6d08b81a3
354 changed files with 2 additions and 1404 deletions

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Cipher.AES (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Union, Text
from .blockalgo import BlockAlgo

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Cipher.ARC2 (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Union, Text
from .blockalgo import BlockAlgo

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Cipher.ARC4 (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Union, Text
__revision__ = ... # type: str

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Cipher.Blowfish (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Union, Text
from .blockalgo import BlockAlgo

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Cipher.CAST (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Union, Text
from .blockalgo import BlockAlgo

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Cipher.DES (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Union, Text
from .blockalgo import BlockAlgo

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Cipher.DES3 (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Union, Text
from .blockalgo import BlockAlgo

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Cipher.PKCS1_OAEP (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional, Union, Text
from Crypto.PublicKey.RSA import _RSAobj

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Cipher.PKCS1_v1_5 (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Union, Text
from Crypto.PublicKey.RSA import _RSAobj

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Cipher.XOR (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Union, Text
__revision__ = ... # type: str

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Cipher (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
# Names in __all__ with no definition:
# AES
# ARC2

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Cipher.blockalgo (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Union, Text
MODE_ECB = ... # type: int

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Hash.HMAC (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
digest_size = ... # type: Any

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Hash.MD2 (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
from Crypto.Hash.hashalgo import HashAlgo

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Hash.MD4 (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
from Crypto.Hash.hashalgo import HashAlgo

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Hash.MD5 (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
from Crypto.Hash.hashalgo import HashAlgo

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Hash.RIPEMD (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
from Crypto.Hash.hashalgo import HashAlgo

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Hash.SHA (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
from Crypto.Hash.hashalgo import HashAlgo

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Hash.SHA224 (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
from Crypto.Hash.hashalgo import HashAlgo

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Hash.SHA256 (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
from Crypto.Hash.hashalgo import HashAlgo

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Hash.SHA384 (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
from Crypto.Hash.hashalgo import HashAlgo

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Hash.SHA512 (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
from Crypto.Hash.hashalgo import HashAlgo

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Hash (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
# Names in __all__ with no definition:
# HMAC
# MD2

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Hash.hashalgo (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
class HashAlgo:

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Protocol.AllOrNothing (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
__revision__ = ... # type: str

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Protocol.Chaffing (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
__revision__ = ... # type: str
class Chaff:

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Protocol.KDF (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
from Crypto.Hash import SHA as SHA1

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Protocol (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
# Names in __all__ with no definition:
# AllOrNothing
# Chaffing

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.PublicKey.DSA (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
from .pubkey import pubkey

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.PublicKey.ElGamal (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
from Crypto.PublicKey.pubkey import pubkey

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.PublicKey.RSA (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional, Union, Text
from .pubkey import pubkey

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.PublicKey (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
# Names in __all__ with no definition:
# DSA
# ElGamal

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.PublicKey.pubkey (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from Crypto.Util.number import * # noqa: F403
__revision__ = ... # type: str

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Random.Fortuna.FortunaAccumulator (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any
__revision__ = ... # type: str

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Random.Fortuna.FortunaGenerator (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any
__revision__ = ... # type: str

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Random.Fortuna.SHAd256 (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
class _SHAd256:

View File

@@ -1,3 +0,0 @@
# Stubs for Crypto.Random.Fortuna (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.

View File

@@ -1,5 +1 @@
# Stubs for Crypto.Random.OSRNG (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
__revision__ = ... # type: str

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Random.OSRNG.fallback (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from .rng_base import BaseRNG
class PythonOSURandomRNG(BaseRNG):

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Random.OSRNG.posix (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
from .rng_base import BaseRNG

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Random.OSRNG.rng_base (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
__revision__ = ... # type: str
class BaseRNG:

View File

@@ -1,5 +1 @@
# Stubs for Crypto.Random (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
def new(*args, **kwargs): ...

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Random.random (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
class StrongRandom:

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Signature.PKCS1_PSS (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
class PSS_SigScheme:

View File

@@ -1,8 +1,3 @@
# Stubs for Crypto.Signature.PKCS1_v1_5 (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
class PKCS115_SigScheme:
def __init__(self, key) -> None: ...
def can_sign(self): ...

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Signature (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
# Names in __all__ with no definition:
# PKCS1_PSS
# PKCS1_v1_5

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Util.Counter (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any
def new(nbits, prefix: Any = ..., suffix: Any = ..., initial_value: int = ..., overflow: int = ..., little_endian: bool = ..., allow_wraparound: bool = ..., disable_shortcut: bool = ...): ...

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Util.RFC1751 (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any
__revision__ = ... # type: str

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Util (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
# Names in __all__ with no definition:
# RFC1751
# asn1

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Util.asn1 (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
class DerObject:

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Util.number (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
from warnings import warn as _warn

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.Util.randpool (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
__revision__ = ... # type: str

View File

@@ -1,6 +1,2 @@
# Stubs for Crypto.Util.strxor (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
def strxor(*args, **kwargs): ...
def strxor_c(*args, **kwargs): ...

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
# Names in __all__ with no definition:
# Cipher
# Hash

View File

@@ -1,7 +1,3 @@
# Stubs for Crypto.pct_warnings (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
class CryptoWarning(Warning): ...
class CryptoDeprecationWarning(DeprecationWarning, CryptoWarning): ...
class CryptoRuntimeWarning(RuntimeWarning, CryptoWarning): ...

View File

@@ -1,7 +1,3 @@
# Stubs for backports_abc (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any
def mk_gen(): ...

View File

@@ -1,7 +1,3 @@
# Stubs for boto (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional, Text
import logging

View File

@@ -1,7 +1,3 @@
# Stubs for boto.auth (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
from boto.auth_handler import AuthHandler

View File

@@ -1,7 +1,3 @@
# Stubs for boto.auth_handler (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any
from boto.plugin import Plugin

View File

@@ -1,7 +1,3 @@
# Stubs for boto.compat (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any
from base64 import encodestring as encodebytes

View File

@@ -1,7 +1,3 @@
# Stubs for boto.connection (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Dict, Optional, Text
from six.moves import http_client

View File

@@ -1,7 +1,3 @@
# Stubs for boto.ec2 (Python 2)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any
RegionData = ... # type: Any

View File

@@ -1,7 +1,3 @@
# Stubs for boto.ec2.elb (Python 2)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any
from boto.connection import AWSQueryConnection

View File

@@ -1,7 +1,3 @@
# Stubs for boto.exception (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
from boto.compat import StandardError

View File

@@ -1,7 +1,3 @@
# Stubs for boto.kms (Python 3.6)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import List
import boto

View File

@@ -1,7 +1,3 @@
# Stubs for boto.kms.exceptions (Python 3.6)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from boto.exception import BotoServerError
class InvalidGrantTokenException(BotoServerError): ...

View File

@@ -1,7 +1,3 @@
# Stubs for boto.kms.layer1 (Python 3.6)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Dict, List, Mapping, Optional, Type
from boto.connection import AWSQueryConnection

View File

@@ -1,7 +1,3 @@
# Stubs for boto.plugin (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
class Plugin:

View File

@@ -1,7 +1,3 @@
# Stubs for boto.regioninfo (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
def load_endpoint_json(path): ...

View File

@@ -1,7 +1,3 @@
# Stubs for boto.s3 (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from .connection import S3Connection
from boto.connection import AWSAuthConnection

View File

@@ -1,7 +1,3 @@
# Stubs for boto.s3.acl (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from .connection import S3Connection
from .user import User
from typing import Any, Dict, Optional, List, Text, Union

View File

@@ -1,7 +1,3 @@
# Stubs for boto.s3.bucket (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from .bucketlistresultset import BucketListResultSet
from .connection import S3Connection
from .key import Key

View File

@@ -1,7 +1,3 @@
# Stubs for boto.s3.bucketlistresultset (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from .bucket import Bucket
from .key import Key

View File

@@ -1,7 +1,3 @@
# Stubs for boto.s3.bucketlogging (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
class BucketLogging:

View File

@@ -1,7 +1,3 @@
# Stubs for boto.s3.connection (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from .bucket import Bucket
from typing import Any, Dict, Optional, Text, Type

View File

@@ -1,7 +1,3 @@
# Stubs for boto.s3.cors (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
class CORSRule:

View File

@@ -1,7 +1,3 @@
# Stubs for boto.s3.deletemarker (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
class DeleteMarker:

View File

@@ -1,7 +1,3 @@
# Stubs for boto.s3.key (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Callable, Dict, Optional, Text
class Key:

View File

@@ -1,7 +1,3 @@
# Stubs for boto.s3.keyfile (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any
class KeyFile:

View File

@@ -1,7 +1,3 @@
# Stubs for boto.s3.lifecycle (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
class Rule:

View File

@@ -1,7 +1,3 @@
# Stubs for boto.s3.multidelete (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
class Deleted:

View File

@@ -1,7 +1,3 @@
# Stubs for boto.s3.multipart (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
class CompleteMultiPartUpload:

View File

@@ -1,7 +1,3 @@
# Stubs for boto.s3.prefix (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
class Prefix:

View File

@@ -1,7 +1,3 @@
# Stubs for boto.s3.tagging (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
class Tag:

View File

@@ -1,7 +1,3 @@
# Stubs for boto.s3.user (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
class User:

View File

@@ -1,7 +1,3 @@
# Stubs for boto.s3.website (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
def tag(key, value): ...

View File

@@ -1,7 +1,3 @@
# Stubs for jinja2 (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from jinja2.environment import Environment as Environment, Template as Template
from jinja2.loaders import BaseLoader as BaseLoader, FileSystemLoader as FileSystemLoader, PackageLoader as PackageLoader, DictLoader as DictLoader, FunctionLoader as FunctionLoader, PrefixLoader as PrefixLoader, ChoiceLoader as ChoiceLoader, ModuleLoader as ModuleLoader
from jinja2.bccache import BytecodeCache as BytecodeCache, FileSystemBytecodeCache as FileSystemBytecodeCache, MemcachedBytecodeCache as MemcachedBytecodeCache

View File

@@ -1,7 +1,3 @@
# Stubs for jinja2._compat (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
import sys

View File

@@ -1,7 +1,3 @@
# Stubs for jinja2._stringdefs (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any
Cc = ... # type: str

View File

@@ -1,7 +1,3 @@
# Stubs for jinja2.bccache (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
marshal_dump = ... # type: Any

View File

@@ -1,7 +1,3 @@
# Stubs for jinja2.compiler (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
from keyword import iskeyword as is_python_keyword
from jinja2.visitor import NodeVisitor

View File

@@ -1,5 +1 @@
# Stubs for jinja2.constants (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
LOREM_IPSUM_WORDS = ... # type: str

View File

@@ -1,7 +1,3 @@
# Stubs for jinja2.debug (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
tproxy = ... # type: Any

View File

@@ -1,7 +1,3 @@
# Stubs for jinja2.defaults (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any
from jinja2.filters import FILTERS as DEFAULT_FILTERS
from jinja2.tests import TESTS as DEFAULT_TESTS

View File

@@ -1,7 +1,3 @@
# Stubs for jinja2.environment (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Callable, Dict, Iterator, List, Optional, Text, Type, Union
from .bccache import BytecodeCache

View File

@@ -1,7 +1,3 @@
# Stubs for jinja2.exceptions (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional, Text
class TemplateError(Exception):

View File

@@ -1,7 +1,3 @@
# Stubs for jinja2.ext (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
GETTEXT_FUNCTIONS = ... # type: Any

View File

@@ -1,7 +1,3 @@
# Stubs for jinja2.filters (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
def contextfilter(f): ...

View File

@@ -1,7 +1,3 @@
# Stubs for jinja2.lexer (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Optional
whitespace_re = ... # type: Any

View File

@@ -1,7 +1,3 @@
# Stubs for jinja2.loaders (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, Callable, List, Optional, Text, Tuple
from types import ModuleType

Some files were not shown because too many files have changed in this diff Show More