#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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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:
-4
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
-4
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:
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
@@ -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
@@ -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
-4
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:
-3
View File
@@ -1,3 +0,0 @@
# Stubs for Crypto.Random.Fortuna (Python 3.5)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
-4
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
-4
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):
-4
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
-4
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:
-4
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): ...
-4
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:
-4
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:
-5
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): ...
-4
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
-4
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 = ...): ...
-4
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
-4
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
-4
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:
-4
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
-4
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
-4
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): ...
-4
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
-4
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): ...
-4
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(): ...
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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): ...
-4
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
-4
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:
-4
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): ...
-4
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
-4
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
-4
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
-4
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
-4
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:
-4
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
-4
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:
-4
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:
-4
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:
-4
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:
-4
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:
-4
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:
-4
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:
-4
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:
-4
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:
-4
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:
-4
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): ...
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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
-4
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):
-4
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
-4
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): ...
-4
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
-4
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