Skip to content

Commit d68ed08

Browse files
author
James William Pye
committed
Add information to root package module.
These are no longer namespace modules.
1 parent e52ce33 commit d68ed08

3 files changed

Lines changed: 18 additions & 9 deletions

File tree

postgresql/__init__.py

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
try:
2-
__import__('pkg_resources').declare_namespace(__name__)
3-
except ImportError:
4-
pass
1+
##
2+
# copyright 2009, James William Pye
3+
# http://python.projects.postgresql.org
4+
##
5+
"""
6+
py-postgresql
7+
=============
8+
"""
9+
__author__ = "James William Pye <x@jwp.name>"
10+
__version__ = "0.8dev"
11+
__date__ = "2009-01-19 21:15:00-07"

postgresql/encodings/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
try:
2-
__import__('pkg_resources').declare_namespace(__name__)
3-
except ImportError:
4-
pass
1+
##
2+
# copyright 2009, James William Pye
3+
# http://python.projects.postgresql.org
4+
##

postgresql/protocol/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22
# copyright 2009, James William Pye
33
# http://python.projects.postgresql.org
44
##
5-
'PQ protocol facilities'
5+
"""
6+
PQ protocol facilities
7+
"""

0 commit comments

Comments
 (0)