Skip to content

Commit ce6a08e

Browse files
committed
Move all py/pyx/pxd files to the top level dir
1 parent 76e71d7 commit ce6a08e

36 files changed

+6
-296
lines changed

.gitignore

Lines changed: 2 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,9 @@
1-
*._*
21
*.pyc
32
*.pyo
4-
*.ymlc
5-
*.ymlc~
6-
*.scssc
73
*.so
84
*.pyd
95
*~
10-
.#*
116
.DS_Store
12-
.project
13-
.pydevproject
14-
.settings
15-
.idea
16-
/.ropeproject
17-
\#*#
18-
/pub
19-
/test*.py
20-
/.local
21-
/perf.data*
22-
/config_local.yml
23-
/build
247
__pycache__/
25-
.d8_history
26-
/*.egg
27-
/*.egg-info
28-
/dist
29-
/.cache
30-
docs/_build
31-
*,cover
32-
.coverage
33-
/.pytest_cache/
34-
/.eggs
8+
/proto.c
9+
*.html

MANIFEST.in

Lines changed: 0 additions & 3 deletions
This file was deleted.

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Sans IO PosgtreSQL driver
1+
Low-level IO utilities for PosgtreSQL drivers.
File renamed without changes.

pgbase/__init__.py renamed to __init__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,3 @@
33
#
44
# This module is part of asyncpg and is released under
55
# the Apache 2.0 License: http://www.apache.org/licenses/LICENSE-2.0
6-
7-
8-
__version__ = '0.1.0.dev0'
File renamed without changes.

pgbase/buffer.pyx renamed to buffer.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ from libc.string cimport memcpy
99

1010
import collections
1111

12-
from pgbase import exceptions
12+
from . import exceptions
1313

1414

1515
@cython.no_gc_clear
File renamed without changes.

pgbase/codecs/bits.pyx renamed to codecs/bits.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# the Apache 2.0 License: http://www.apache.org/licenses/LICENSE-2.0
66

77

8-
from pgbase.types import BitString
8+
from ..types import BitString
99

1010

1111
cdef bits_encode(CodecContext settings, WriteBuffer wbuf, obj):
File renamed without changes.

0 commit comments

Comments
 (0)