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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: peek-python
3
- Version: 25.0.9
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
- ![PyPI](https://img.shields.io/pypi/v/peek-python) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/peek-python) ![PyPI - Implementation](https://img.shields.io/pypi/implementation/peek)
1536
- ![PyPI - License](https://img.shields.io/pypi/l/peek) ![ruff](https://img.shields.io/badge/style-ruff-41B5BE?style=flat)
1531
+ ![PyPI](https://img.shields.io/pypi/v/peek-python) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/peek-python) ![PyPI - Implementation](https://img.shields.io/pypi/implementation/peek-python)
1532
+ ![PyPI - License](https://img.shields.io/pypi/l/peek-python) ![ruff](https://img.shields.io/badge/style-ruff-41B5BE?style=flat)
1537
1533
  ![GitHub last commit](https://img.shields.io/github/last-commit/salabim/peek)
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
- ![PyPI](https://img.shields.io/pypi/v/peek-python) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/peek-python) ![PyPI - Implementation](https://img.shields.io/pypi/implementation/peek)
1516
- ![PyPI - License](https://img.shields.io/pypi/l/peek) ![ruff](https://img.shields.io/badge/style-ruff-41B5BE?style=flat)
1511
+ ![PyPI](https://img.shields.io/pypi/v/peek-python) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/peek-python) ![PyPI - Implementation](https://img.shields.io/pypi/implementation/peek-python)
1512
+ ![PyPI - License](https://img.shields.io/pypi/l/peek-python) ![ruff](https://img.shields.io/badge/style-ruff-41B5BE?style=flat)
1517
1513
  ![GitHub last commit](https://img.shields.io/github/last-commit/salabim/peek)
1518
1514
 
@@ -4,7 +4,7 @@
4
4
  # | .__/ \___| \___||_|\_\
5
5
  # |_| like print, but easy.
6
6
 
7
- __version__ = "25.0.9"
7
+ __version__ = "25.0.10"
8
8
 
9
9
  """
10
10
  See https://github.com/salabim/peek for details
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: peek-python
3
- Version: 25.0.9
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
- ![PyPI](https://img.shields.io/pypi/v/peek-python) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/peek-python) ![PyPI - Implementation](https://img.shields.io/pypi/implementation/peek)
1536
- ![PyPI - License](https://img.shields.io/pypi/l/peek) ![ruff](https://img.shields.io/badge/style-ruff-41B5BE?style=flat)
1531
+ ![PyPI](https://img.shields.io/pypi/v/peek-python) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/peek-python) ![PyPI - Implementation](https://img.shields.io/pypi/implementation/peek-python)
1532
+ ![PyPI - License](https://img.shields.io/pypi/l/peek-python) ![ruff](https://img.shields.io/badge/style-ruff-41B5BE?style=flat)
1537
1533
  ![GitHub last commit](https://img.shields.io/github/last-commit/salabim/peek)
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.9"
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