peek-python 25.0.9__tar.gz → 25.0.10__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.
- {peek_python-25.0.9 → peek_python-25.0.10}/PKG-INFO +3 -7
- {peek_python-25.0.9 → peek_python-25.0.10}/README.md +2 -6
- {peek_python-25.0.9 → peek_python-25.0.10}/peek/peek.py +1 -1
- {peek_python-25.0.9 → peek_python-25.0.10}/peek_python.egg-info/PKG-INFO +3 -7
- {peek_python-25.0.9 → peek_python-25.0.10}/pyproject.toml +1 -1
- {peek_python-25.0.9 → peek_python-25.0.10}/license.txt +0 -0
- {peek_python-25.0.9 → peek_python-25.0.10}/peek/__init__.py +0 -0
- {peek_python-25.0.9 → peek_python-25.0.10}/peek_python.egg-info/SOURCES.txt +0 -0
- {peek_python-25.0.9 → peek_python-25.0.10}/peek_python.egg-info/dependency_links.txt +0 -0
- {peek_python-25.0.9 → peek_python-25.0.10}/peek_python.egg-info/requires.txt +0 -0
- {peek_python-25.0.9 → peek_python-25.0.10}/peek_python.egg-info/top_level.txt +0 -0
- {peek_python-25.0.9 → peek_python-25.0.10}/setup.cfg +0 -0
- {peek_python-25.0.9 → peek_python-25.0.10}/tests/test_peek.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: peek-python
|
|
3
|
-
Version: 25.0.
|
|
3
|
+
Version: 25.0.10
|
|
4
4
|
Summary: peek - debugging and benchmarking made easy
|
|
5
5
|
Author-email: Ruud van der Ham <rt.van.der.ham@gmail.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/salabim/peek
|
|
@@ -861,8 +861,6 @@ world={'EN': 'world', 'NL': 'wereld', 'FR': 'monde', 'DE': 'Welt'}
|
|
|
861
861
|
world={'DE': 'Welt', 'EN': 'world', 'FR': 'monde', 'NL': 'wereld'}
|
|
862
862
|
```
|
|
863
863
|
|
|
864
|
-
Note that under Python <=3.7, dicts are always printed sorted.
|
|
865
|
-
|
|
866
864
|
## underscore_numbers / un
|
|
867
865
|
|
|
868
866
|
By default, peek does not add underscores in big numbers (printed by pprint). However, it is possible to get the
|
|
@@ -881,8 +879,6 @@ numbers={'one': 1, 'thousand': 1_000, 'million': 1_000_000, 'x1234567890': 1_234
|
|
|
881
879
|
numbers={'one': 1, 'thousand': 1000, 'million': 1000000, 'x1234567890': 1234567890}
|
|
882
880
|
```
|
|
883
881
|
|
|
884
|
-
Note that under Python <=3.7, numbers are never underscored.
|
|
885
|
-
|
|
886
882
|
## seperator / sep
|
|
887
883
|
|
|
888
884
|
By default, pairs (on one line) are separated by `", "`.
|
|
@@ -1532,7 +1528,7 @@ colorize *) yes, off by default yes, on by default
|
|
|
1532
1528
|
*) peek allows selection of colors, whereas IceCream does coloring based on contents.
|
|
1533
1529
|
|
|
1534
1530
|
```
|
|
1535
|
-
  
|
|
1536
|
-
 
|
|
1531
|
+
  
|
|
1532
|
+
 
|
|
1537
1533
|

|
|
1538
1534
|
|
|
@@ -841,8 +841,6 @@ world={'EN': 'world', 'NL': 'wereld', 'FR': 'monde', 'DE': 'Welt'}
|
|
|
841
841
|
world={'DE': 'Welt', 'EN': 'world', 'FR': 'monde', 'NL': 'wereld'}
|
|
842
842
|
```
|
|
843
843
|
|
|
844
|
-
Note that under Python <=3.7, dicts are always printed sorted.
|
|
845
|
-
|
|
846
844
|
## underscore_numbers / un
|
|
847
845
|
|
|
848
846
|
By default, peek does not add underscores in big numbers (printed by pprint). However, it is possible to get the
|
|
@@ -861,8 +859,6 @@ numbers={'one': 1, 'thousand': 1_000, 'million': 1_000_000, 'x1234567890': 1_234
|
|
|
861
859
|
numbers={'one': 1, 'thousand': 1000, 'million': 1000000, 'x1234567890': 1234567890}
|
|
862
860
|
```
|
|
863
861
|
|
|
864
|
-
Note that under Python <=3.7, numbers are never underscored.
|
|
865
|
-
|
|
866
862
|
## seperator / sep
|
|
867
863
|
|
|
868
864
|
By default, pairs (on one line) are separated by `", "`.
|
|
@@ -1512,7 +1508,7 @@ colorize *) yes, off by default yes, on by default
|
|
|
1512
1508
|
*) peek allows selection of colors, whereas IceCream does coloring based on contents.
|
|
1513
1509
|
|
|
1514
1510
|
```
|
|
1515
|
-
  
|
|
1516
|
-
 
|
|
1511
|
+
  
|
|
1512
|
+
 
|
|
1517
1513
|

|
|
1518
1514
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: peek-python
|
|
3
|
-
Version: 25.0.
|
|
3
|
+
Version: 25.0.10
|
|
4
4
|
Summary: peek - debugging and benchmarking made easy
|
|
5
5
|
Author-email: Ruud van der Ham <rt.van.der.ham@gmail.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/salabim/peek
|
|
@@ -861,8 +861,6 @@ world={'EN': 'world', 'NL': 'wereld', 'FR': 'monde', 'DE': 'Welt'}
|
|
|
861
861
|
world={'DE': 'Welt', 'EN': 'world', 'FR': 'monde', 'NL': 'wereld'}
|
|
862
862
|
```
|
|
863
863
|
|
|
864
|
-
Note that under Python <=3.7, dicts are always printed sorted.
|
|
865
|
-
|
|
866
864
|
## underscore_numbers / un
|
|
867
865
|
|
|
868
866
|
By default, peek does not add underscores in big numbers (printed by pprint). However, it is possible to get the
|
|
@@ -881,8 +879,6 @@ numbers={'one': 1, 'thousand': 1_000, 'million': 1_000_000, 'x1234567890': 1_234
|
|
|
881
879
|
numbers={'one': 1, 'thousand': 1000, 'million': 1000000, 'x1234567890': 1234567890}
|
|
882
880
|
```
|
|
883
881
|
|
|
884
|
-
Note that under Python <=3.7, numbers are never underscored.
|
|
885
|
-
|
|
886
882
|
## seperator / sep
|
|
887
883
|
|
|
888
884
|
By default, pairs (on one line) are separated by `", "`.
|
|
@@ -1532,7 +1528,7 @@ colorize *) yes, off by default yes, on by default
|
|
|
1532
1528
|
*) peek allows selection of colors, whereas IceCream does coloring based on contents.
|
|
1533
1529
|
|
|
1534
1530
|
```
|
|
1535
|
-
  
|
|
1536
|
-
 
|
|
1531
|
+
  
|
|
1532
|
+
 
|
|
1537
1533
|

|
|
1538
1534
|
|
|
@@ -10,7 +10,7 @@ authors = [
|
|
|
10
10
|
{ name = "Ruud van der Ham", email = "rt.van.der.ham@gmail.com" },
|
|
11
11
|
]
|
|
12
12
|
description = "peek - debugging and benchmarking made easy"
|
|
13
|
-
version = "25.0.
|
|
13
|
+
version = "25.0.10"
|
|
14
14
|
readme = "README.md"
|
|
15
15
|
requires-python = ">=3.7"
|
|
16
16
|
dependencies = [
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|