Author: darcy Date: Sat Jul 18 20:57:59 2015 New Revision: 521 Log: Use hard coded path rather than env.
Modified: trunk/buildhtml.py trunk/module/TEST_PyGreSQL_classic.py trunk/module/TEST_PyGreSQL_dbapi20.py trunk/module/dbapi20.py trunk/module/pg.py trunk/module/pgdb.py trunk/module/setup.py trunk/module/test_inserttable.py trunk/module/test_pg.py trunk/tutorial/advanced.py trunk/tutorial/basics.py Modified: trunk/buildhtml.py ============================================================================== --- trunk/buildhtml.py Wed Apr 22 09:11:58 2015 (r520) +++ trunk/buildhtml.py Sat Jul 18 20:57:59 2015 (r521) @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#! /usr/bin/python # Author: David Goodger # Contact: [email protected] Modified: trunk/module/TEST_PyGreSQL_classic.py ============================================================================== --- trunk/module/TEST_PyGreSQL_classic.py Wed Apr 22 09:11:58 2015 (r520) +++ trunk/module/TEST_PyGreSQL_classic.py Sat Jul 18 20:57:59 2015 (r521) @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#! /usr/bin/python from __future__ import with_statement Modified: trunk/module/TEST_PyGreSQL_dbapi20.py ============================================================================== --- trunk/module/TEST_PyGreSQL_dbapi20.py Wed Apr 22 09:11:58 2015 (r520) +++ trunk/module/TEST_PyGreSQL_dbapi20.py Sat Jul 18 20:57:59 2015 (r521) @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#! /usr/bin/python # $Id$ from __future__ import with_statement Modified: trunk/module/dbapi20.py ============================================================================== --- trunk/module/dbapi20.py Wed Apr 22 09:11:58 2015 (r520) +++ trunk/module/dbapi20.py Sat Jul 18 20:57:59 2015 (r521) @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#! /usr/bin/python ''' Python DB API 2.0 driver compliance unit test suite. This software is Public Domain and may be used without restrictions. Modified: trunk/module/pg.py ============================================================================== --- trunk/module/pg.py Wed Apr 22 09:11:58 2015 (r520) +++ trunk/module/pg.py Sat Jul 18 20:57:59 2015 (r521) @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#! /usr/bin/python # # pg.py # Modified: trunk/module/pgdb.py ============================================================================== --- trunk/module/pgdb.py Wed Apr 22 09:11:58 2015 (r520) +++ trunk/module/pgdb.py Sat Jul 18 20:57:59 2015 (r521) @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#! /usr/bin/python # # pgdb.py # Modified: trunk/module/setup.py ============================================================================== --- trunk/module/setup.py Wed Apr 22 09:11:58 2015 (r520) +++ trunk/module/setup.py Sat Jul 18 20:57:59 2015 (r521) @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#! /usr/bin/python # $Id$ """Setup script for PyGreSQL version 4.1 Modified: trunk/module/test_inserttable.py ============================================================================== --- trunk/module/test_inserttable.py Wed Apr 22 09:11:58 2015 (r520) +++ trunk/module/test_inserttable.py Sat Jul 18 20:57:59 2015 (r521) @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#! /usr/bin/python # # Test the PyGreSQL inserttable() function. # You need a "test" database ("createdb test"). Modified: trunk/module/test_pg.py ============================================================================== --- trunk/module/test_pg.py Wed Apr 22 09:11:58 2015 (r520) +++ trunk/module/test_pg.py Sat Jul 18 20:57:59 2015 (r521) @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#! /usr/bin/python # -*- coding: utf-8 -*- # # test_pg.py Modified: trunk/tutorial/advanced.py ============================================================================== --- trunk/tutorial/advanced.py Wed Apr 22 09:11:58 2015 (r520) +++ trunk/tutorial/advanced.py Sat Jul 18 20:57:59 2015 (r521) @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/python # advanced.py - demo of advanced features of PostGres. Some may not be ANSI. # inspired from the Postgres tutorial # adapted to Python 1995 by Pascal Andre Modified: trunk/tutorial/basics.py ============================================================================== --- trunk/tutorial/basics.py Wed Apr 22 09:11:58 2015 (r520) +++ trunk/tutorial/basics.py Sat Jul 18 20:57:59 2015 (r521) @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/python # basics.py - basic SQL commands tutorial # inspired from the Postgres95 tutorial # adapted to Python 1995 by Pascal ANDRE _______________________________________________ PyGreSQL mailing list [email protected] https://mail.vex.net/mailman/listinfo.cgi/pygresql
