hexconv 0.2.6__tar.gz → 0.2.7__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.4
2
2
  Name: hexconv
3
- Version: 0.2.6
3
+ Version: 0.2.7
4
4
  Summary: Pythonic conversion toolkit for bytes, hex, integers, arrays, binary strings, base64, and text.
5
5
  Author: hexconv contributors
6
6
  License-Expression: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "hexconv"
7
- version = "0.2.6"
7
+ version = "0.2.7"
8
8
  description = "Pythonic conversion toolkit for bytes, hex, integers, arrays, binary strings, base64, and text."
9
9
  readme = { file = "README.md", content-type = "text/markdown" }
10
10
  requires-python = ">=3.10"
@@ -462,7 +462,7 @@ _BINARY_CHARS = re.compile(r"^[01]*$")
462
462
 
463
463
  @dataclass(frozen=True)
464
464
  class Value:
465
- """Canonical byte-backed value with output methods for common formats."""
465
+ """Byte-backed value with output methods for common formats."""
466
466
 
467
467
  _data: bytes
468
468
  source: str | None = None
@@ -987,7 +987,7 @@ class Converter:
987
987
  return parsed.to(self.to, **self.output_options)
988
988
 
989
989
  def parse(self, value: Any) -> Value:
990
- """Parse a value and return the canonical Value instead of emitting."""
990
+ """Parse a value and return the parsed Value instead of emitting."""
991
991
 
992
992
  return _parse(value, self.from_, **self.input_options)
993
993
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hexconv
3
- Version: 0.2.6
3
+ Version: 0.2.7
4
4
  Summary: Pythonic conversion toolkit for bytes, hex, integers, arrays, binary strings, base64, and text.
5
5
  Author: hexconv contributors
6
6
  License-Expression: MIT
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes