Skip to content

Commit

Permalink
rename modules
Browse files Browse the repository at this point in the history
  • Loading branch information
davidism committed Feb 26, 2020
1 parent 09c0ff5 commit ee2bf30
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/cookie.rst
Original file line number Diff line number Diff line change
@@ -1 +1 @@
.. automodule:: secure_cookie.securecookie
.. automodule:: secure_cookie.cookie
2 changes: 1 addition & 1 deletion docs/session.rst
Original file line number Diff line number Diff line change
@@ -1 +1 @@
.. automodule:: secure_cookie.sessions
.. automodule:: secure_cookie.session
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def application(request):
from ._compat import text_type
from ._compat import to_bytes
from ._compat import to_native
from .sessions import ModificationTrackingDict
from .session import ModificationTrackingDict

_epoch_ord = datetime(1970, 1, 1).toordinal()

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/test_securecookie.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from werkzeug.wrappers import Response

from secure_cookie._compat import to_native
from secure_cookie.securecookie import SecureCookie
from secure_cookie.cookie import SecureCookie


def test_basic_support():
Expand Down
2 changes: 1 addition & 1 deletion tests/test_sessions.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
from tempfile import gettempdir

from secure_cookie.sessions import FilesystemSessionStore
from secure_cookie.session import FilesystemSessionStore


def test_default_tempdir():
Expand Down

0 comments on commit ee2bf30

Please sign in to comment.