firegex 3.2.1__tar.gz → 3.2.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {firegex-3.2.1/firegex.egg-info → firegex-3.2.3}/PKG-INFO +2 -2
- firegex-3.2.3/firegex/__init__.py +5 -0
- {firegex-3.2.1 → firegex-3.2.3}/firegex/nfproxy/__init__.py +3 -1
- {firegex-3.2.1 → firegex-3.2.3/firegex.egg-info}/PKG-INFO +2 -2
- {firegex-3.2.1 → firegex-3.2.3}/setup.py +1 -1
- firegex-3.2.1/firegex/__init__.py +0 -5
- {firegex-3.2.1 → firegex-3.2.3}/MANIFEST.in +0 -0
- {firegex-3.2.1 → firegex-3.2.3}/README.md +0 -0
- {firegex-3.2.1 → firegex-3.2.3}/fgex +0 -0
- {firegex-3.2.1 → firegex-3.2.3}/firegex/__main__.py +0 -0
- {firegex-3.2.1 → firegex-3.2.3}/firegex/cli.py +0 -0
- {firegex-3.2.1 → firegex-3.2.3}/firegex/nfproxy/internals/__init__.py +0 -0
- {firegex-3.2.1 → firegex-3.2.3}/firegex/nfproxy/internals/data.py +0 -0
- {firegex-3.2.1 → firegex-3.2.3}/firegex/nfproxy/internals/exceptions.py +0 -0
- {firegex-3.2.1 → firegex-3.2.3}/firegex/nfproxy/internals/models.py +0 -0
- {firegex-3.2.1 → firegex-3.2.3}/firegex/nfproxy/models/__init__.py +0 -0
- {firegex-3.2.1 → firegex-3.2.3}/firegex/nfproxy/models/http.py +0 -0
- {firegex-3.2.1 → firegex-3.2.3}/firegex/nfproxy/models/tcp.py +0 -0
- {firegex-3.2.1 → firegex-3.2.3}/firegex/nfproxy/proxysim/__init__.py +0 -0
- {firegex-3.2.1 → firegex-3.2.3}/firegex.egg-info/SOURCES.txt +0 -0
- {firegex-3.2.1 → firegex-3.2.3}/firegex.egg-info/dependency_links.txt +0 -0
- {firegex-3.2.1 → firegex-3.2.3}/firegex.egg-info/requires.txt +0 -0
- {firegex-3.2.1 → firegex-3.2.3}/firegex.egg-info/top_level.txt +0 -0
- {firegex-3.2.1 → firegex-3.2.3}/requirements.txt +0 -0
- {firegex-3.2.1 → firegex-3.2.3}/setup.cfg +0 -0
|
@@ -25,7 +25,9 @@ def pyfilter(func):
|
|
|
25
25
|
|
|
26
26
|
def get_pyfilters():
|
|
27
27
|
"""Returns the list of functions marked with @pyfilter."""
|
|
28
|
-
|
|
28
|
+
if hasattr(pyfilter, "registry"):
|
|
29
|
+
return list(pyfilter.registry)
|
|
30
|
+
return []
|
|
29
31
|
|
|
30
32
|
def clear_pyfilter_registry():
|
|
31
33
|
"""Clears the pyfilter registry."""
|
|
@@ -6,7 +6,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
6
6
|
with open('requirements.txt', 'r', encoding='utf-8') as f:
|
|
7
7
|
required = [ele.strip() for ele in f.read().splitlines() if not ele.strip().startswith("#") and ele.strip() != ""]
|
|
8
8
|
|
|
9
|
-
VERSION = "3.2.
|
|
9
|
+
VERSION = "3.2.3"
|
|
10
10
|
|
|
11
11
|
setuptools.setup(
|
|
12
12
|
name="firegex",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|