Merge branch 'bugfix/8' into dev
ID: 8 Type: bugfix Title: rename package Status: done Priority: high Created: 2025-06-20 Description: use dot namespaces to make the package a little more elegant
This commit is contained in:
commit
e14886dc3f
12 changed files with 8 additions and 8 deletions
2
TODO
2
TODO
|
|
@ -135,7 +135,7 @@ Description: copy the testing environment setup from
|
||||||
ID: 8
|
ID: 8
|
||||||
Type: bugfix
|
Type: bugfix
|
||||||
Title: rename package
|
Title: rename package
|
||||||
Status: in-progress
|
Status: done
|
||||||
Priority: high
|
Priority: high
|
||||||
Created: 2025-06-20
|
Created: 2025-06-20
|
||||||
Description: use dot namespaces to make the package a little more elegant
|
Description: use dot namespaces to make the package a little more elegant
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ requires = [
|
||||||
build-backend = "setuptools.build_meta"
|
build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "byteb4rb1e-utils"
|
name = "byteb4rb1e.utils"
|
||||||
description = "personal utilities and helpers"
|
description = "personal utilities and helpers"
|
||||||
authors = [
|
authors = [
|
||||||
{ name = "Tiara Rodney", email = "tiara.rodney@administratrix.de" }
|
{ name = "Tiara Rodney", email = "tiara.rodney@administratrix.de" }
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
from dataclasses import dataclass
|
from dataclasses import dataclass
|
||||||
from http.server import SimpleHTTPRequestHandler
|
from http.server import SimpleHTTPRequestHandler
|
||||||
|
|
||||||
from byteb4rb1e_utils.io import ChunksIO
|
from byteb4rb1e.utils.io import ChunksIO
|
||||||
|
|
||||||
|
|
||||||
@dataclass
|
@dataclass
|
||||||
|
|
@ -8,12 +8,12 @@ from http.server import HTTPServer
|
||||||
from io import BytesIO, IOBase
|
from io import BytesIO, IOBase
|
||||||
from typing import Optional, Tuple, List
|
from typing import Optional, Tuple, List
|
||||||
|
|
||||||
from byteb4rb1e_utils.http.server import (
|
from byteb4rb1e.utils.http.server import (
|
||||||
HandlerOptions,
|
HandlerOptions,
|
||||||
MultipartUploadHandler,
|
MultipartUploadHandler,
|
||||||
ServerOptions,
|
ServerOptions,
|
||||||
)
|
)
|
||||||
from byteb4rb1e_utils.io import ChunksIO
|
from byteb4rb1e.utils.io import ChunksIO
|
||||||
|
|
||||||
|
|
||||||
__doc__ = """tsmuds - Tiara's Simple Multipart Upload Debugging Server
|
__doc__ = """tsmuds - Tiara's Simple Multipart Upload Debugging Server
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
from byteb4rb1e_utils.collections import CircularBuffer
|
from byteb4rb1e.utils.collections import CircularBuffer
|
||||||
|
|
||||||
class test_init(unittest.TestCase):
|
class test_init(unittest.TestCase):
|
||||||
"""CircularBuffer.__init__()"""
|
"""CircularBuffer.__init__()"""
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
from io import BytesIO, IOBase
|
from io import BytesIO, IOBase
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
from byteb4rb1e_utils.io import ChunksIO
|
from byteb4rb1e.utils.io import ChunksIO
|
||||||
|
|
||||||
|
|
||||||
class TestGetChunkSize(unittest.TestCase):
|
class TestGetChunkSize(unittest.TestCase):
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
from byteb4rb1e_utils.string import RollingHash
|
from byteb4rb1e.utils.string import RollingHash
|
||||||
|
|
||||||
class test_compute_initial_hash(unittest.TestCase):
|
class test_compute_initial_hash(unittest.TestCase):
|
||||||
"""RollingHash.compute_initial_hash()
|
"""RollingHash.compute_initial_hash()
|
||||||
Loading…
Add table
Add a link
Reference in a new issue