Title: [1027] trunk: Consistent spelling of PyGreSQL
- Revision
- 1027
- Author
- cito
- Date
- 2019-10-05 11:30:59 -0400 (Sat, 05 Oct 2019)
Log Message
Consistent spelling of PyGreSQL
Modified Paths
Diff
Modified: trunk/docs/download/files.rst (1026 => 1027)
--- trunk/docs/download/files.rst 2019-10-04 18:18:41 UTC (rev 1026)
+++ trunk/docs/download/files.rst 2019-10-05 15:30:59 UTC (rev 1027)
@@ -15,7 +15,7 @@
py3c.h Python 2/3 compatibility layer for the C extension
pg.py the "classic" PyGreSQL module
-pgdb.py a DB-SIG DB-API 2.0 compliant API wrapper for PygreSQL
+pgdb.py a DB-SIG DB-API 2.0 compliant API wrapper for PyGreSQL
setup.py the Python setup script
Modified: trunk/pgdb.py (1026 => 1027)
--- trunk/pgdb.py 2019-10-04 18:18:41 UTC (rev 1026)
+++ trunk/pgdb.py 2019-10-05 15:30:59 UTC (rev 1027)
@@ -10,7 +10,7 @@
#
# Please see the LICENSE.TXT file for specific restrictions.
-"""pgdb - DB-API 2.0 compliant module for PygreSQL.
+"""pgdb - DB-API 2.0 compliant module for PyGreSQL.
(c) 1999, Pascal Andre <an...@via.ecp.fr>.
See package documentation for further information on copyright.
Modified: trunk/setup.py (1026 => 1027)
--- trunk/setup.py 2019-10-04 18:18:41 UTC (rev 1026)
+++ trunk/setup.py 2019-10-05 15:30:59 UTC (rev 1027)
@@ -90,7 +90,7 @@
match = re.search(r'(\d+)\.(\d+)', pg_config('version'))
if match:
return tuple(map(int, match.groups()))
- return (9, 0)
+ return 9, 0
pg_version = pg_version()
@@ -137,7 +137,7 @@
self.escaping_funcs = pg_version >= (9, 0)
self.ssl_info = pg_version >= (9, 5)
if pg_version < (9, 0):
- warnings.warn("PygreSQL does not support this PostgreSQL version.")
+ warnings.warn("PyGreSQL does not support this PostgreSQL version.")
def finalize_options(self):
"""Set final values for all build_pg options."""
_______________________________________________
PyGreSQL mailing list
PyGreSQL@Vex.Net
https://mail.vex.net/mailman/listinfo/pygresql