python-ksuid icon indicating copy to clipboard operation
python-ksuid copied to clipboard

A pure-Python KSUID implementation

Results 2 python-ksuid issues
Sort by recently updated
recently updated
newest added

No need to re-import datetime as datetime_lib inside `__init__`, just import it as that in the outer scope once. Import the typing members directly.

Adds a few negative tests. These two are suspect: ``` def test_to_from_base62_invalid_base62_string(): # Arrange ksuid = Ksuid() invalid_base62 = "invalid_base62_string!" # Act & Assert with pytest.raises(ValueError): ksuid.from_base62(invalid_base62) def test_to_from_base62_empty_string(): #...