TSVZ 3.11__tar.gz → 3.12__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.
- {tsvz-3.11 → tsvz-3.12}/PKG-INFO +1 -1
- {tsvz-3.11 → tsvz-3.12}/TSVZ.egg-info/PKG-INFO +1 -1
- {tsvz-3.11 → tsvz-3.12}/TSVZ.py +7 -1
- {tsvz-3.11 → tsvz-3.12}/README.md +0 -0
- {tsvz-3.11 → tsvz-3.12}/TSVZ.egg-info/SOURCES.txt +0 -0
- {tsvz-3.11 → tsvz-3.12}/TSVZ.egg-info/dependency_links.txt +0 -0
- {tsvz-3.11 → tsvz-3.12}/TSVZ.egg-info/entry_points.txt +0 -0
- {tsvz-3.11 → tsvz-3.12}/TSVZ.egg-info/top_level.txt +0 -0
- {tsvz-3.11 → tsvz-3.12}/setup.cfg +0 -0
- {tsvz-3.11 → tsvz-3.12}/setup.py +0 -0
{tsvz-3.11 → tsvz-3.12}/PKG-INFO
RENAMED
{tsvz-3.11 → tsvz-3.12}/TSVZ.py
RENAMED
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
#!/usr/bin/env python3
|
|
2
|
+
# /// script
|
|
3
|
+
# requires-python = ">=3.6"
|
|
4
|
+
# dependencies = [
|
|
5
|
+
# ]
|
|
6
|
+
# ///
|
|
2
7
|
import os , sys
|
|
3
8
|
from collections import OrderedDict , deque
|
|
4
9
|
import time
|
|
@@ -17,7 +22,8 @@ if os.name == 'nt':
|
|
|
17
22
|
elif os.name == 'posix':
|
|
18
23
|
import fcntl
|
|
19
24
|
|
|
20
|
-
version = '3.
|
|
25
|
+
version = '3.12'
|
|
26
|
+
__version__ = version
|
|
21
27
|
author = 'pan@zopyr.us'
|
|
22
28
|
|
|
23
29
|
DEFAULT_DELIMITER = '\t'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{tsvz-3.11 → tsvz-3.12}/setup.py
RENAMED
|
File without changes
|