diff options
author | Piotr Kasprzyk <ciri@ciri.pl> | 2013-04-26 10:21:56 +0200 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2013-04-26 09:59:40 +0100 |
commit | 31b6ec63f8ab0bc0333c0cbe9a19543fde437ce2 (patch) | |
tree | 591d9e77b7d8ef7d968480dac2e22aa69a8b19a2 /setup.py | |
parent | 2eba97de7059b71b953fda9b1720a7059cbbcaf2 (diff) | |
download | psycopg2-31b6ec63f8ab0bc0333c0cbe9a19543fde437ce2.tar.gz |
Fix multiple misspellings
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -21,7 +21,7 @@ and stable as a rock. psycopg2 is different from the other database adapter because it was designed for heavily multi-threaded applications that create and destroy lots of cursors and make a conspicuous number of concurrent INSERTs or -UPDATEs. psycopg2 also provide full asycronous operations and support +UPDATEs. psycopg2 also provide full asynchronous operations and support for coroutine libraries. """ @@ -216,7 +216,7 @@ or with the pg_config option in 'setup.cfg'. class psycopg_build_ext(build_ext): """Conditionally complement the setup.cfg options file. - This class configures the include_dirs, libray_dirs, libraries + This class configures the include_dirs, library_dirs, libraries options as required by the system. Most of the configuration happens in finalize_options() method. @@ -368,7 +368,7 @@ class psycopg_build_ext(build_ext): finalize_linux3 = finalize_linux def finalize_options(self): - """Complete the build system configuation.""" + """Complete the build system configuration.""" build_ext.finalize_options(self) pg_config_helper = PostgresConfig(self) |