Title: [969] trunk: Shebang should not be followed by a blank
Revision
969
Author
cito
Date
2019-04-19 09:35:23 -0400 (Fri, 19 Apr 2019)

Log Message

Shebang should not be followed by a blank

It's a myth that it is needed because some old versions of Unix expect it.
However, some editors do not like a blank here.

Modified Paths

Diff

Modified: trunk/mkdocs (968 => 969)


--- trunk/mkdocs	2019-01-06 20:17:40 UTC (rev 968)
+++ trunk/mkdocs	2019-04-19 13:35:23 UTC (rev 969)
@@ -1,4 +1,4 @@
-#! /bin/sh
+#!/bin/sh
 
 MAKE=make
 which gmake && MAKE=gmake

Modified: trunk/mktar (968 => 969)


--- trunk/mktar	2019-01-06 20:17:40 UTC (rev 968)
+++ trunk/mktar	2019-04-19 13:35:23 UTC (rev 969)
@@ -1,4 +1,4 @@
-#! /bin/sh
+#!/bin/sh
 
 VERSION=5.1
 DISTDIR=/u/WEB/pyg/files

Modified: trunk/pg.py (968 => 969)


--- trunk/pg.py	2019-01-06 20:17:40 UTC (rev 968)
+++ trunk/pg.py	2019-04-19 13:35:23 UTC (rev 969)
@@ -1,4 +1,4 @@
-#! /usr/bin/python
+#!/usr/bin/python
 #
 # pg.py
 #

Modified: trunk/pgdb.py (968 => 969)


--- trunk/pgdb.py	2019-01-06 20:17:40 UTC (rev 968)
+++ trunk/pgdb.py	2019-04-19 13:35:23 UTC (rev 969)
@@ -1,4 +1,4 @@
-#! /usr/bin/python
+#!/usr/bin/python
 #
 # pgdb.py
 #
@@ -1823,6 +1823,7 @@
 
     __pg_repr__ = __str__
 
+
 # If run as script, print some information:
 
 if __name__ == '__main__':

Modified: trunk/setup.py (968 => 969)


--- trunk/setup.py	2019-01-06 20:17:40 UTC (rev 968)
+++ trunk/setup.py	2019-04-19 13:35:23 UTC (rev 969)
@@ -1,4 +1,4 @@
-#! /usr/bin/python
+#!/usr/bin/python
 # $Id$
 
 """Setup script for PyGreSQL version 5.1

Modified: trunk/tests/dbapi20.py (968 => 969)


--- trunk/tests/dbapi20.py	2019-01-06 20:17:40 UTC (rev 968)
+++ trunk/tests/dbapi20.py	2019-04-19 13:35:23 UTC (rev 969)
@@ -1,4 +1,4 @@
-#! /usr/bin/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/tests/test_classic.py (968 => 969)


--- trunk/tests/test_classic.py	2019-01-06 20:17:40 UTC (rev 968)
+++ trunk/tests/test_classic.py	2019-04-19 13:35:23 UTC (rev 969)
@@ -1,4 +1,4 @@
-#! /usr/bin/python
+#!/usr/bin/python
 # -*- coding: utf-8 -*-
 
 from __future__ import print_function

Modified: trunk/tests/test_classic_connection.py (968 => 969)


--- trunk/tests/test_classic_connection.py	2019-01-06 20:17:40 UTC (rev 968)
+++ trunk/tests/test_classic_connection.py	2019-04-19 13:35:23 UTC (rev 969)
@@ -1,4 +1,4 @@
-#! /usr/bin/python
+#!/usr/bin/python
 # -*- coding: utf-8 -*-
 
 """Test the classic PyGreSQL interface.

Modified: trunk/tests/test_classic_dbwrapper.py (968 => 969)


--- trunk/tests/test_classic_dbwrapper.py	2019-01-06 20:17:40 UTC (rev 968)
+++ trunk/tests/test_classic_dbwrapper.py	2019-04-19 13:35:23 UTC (rev 969)
@@ -1,4 +1,4 @@
-#! /usr/bin/python
+#!/usr/bin/python
 # -*- coding: utf-8 -*-
 
 """Test the classic PyGreSQL interface.

Modified: trunk/tests/test_classic_functions.py (968 => 969)


--- trunk/tests/test_classic_functions.py	2019-01-06 20:17:40 UTC (rev 968)
+++ trunk/tests/test_classic_functions.py	2019-04-19 13:35:23 UTC (rev 969)
@@ -1,4 +1,4 @@
-#! /usr/bin/python
+#!/usr/bin/python
 # -*- coding: utf-8 -*-
 
 """Test the classic PyGreSQL interface.

Modified: trunk/tests/test_classic_largeobj.py (968 => 969)


--- trunk/tests/test_classic_largeobj.py	2019-01-06 20:17:40 UTC (rev 968)
+++ trunk/tests/test_classic_largeobj.py	2019-04-19 13:35:23 UTC (rev 969)
@@ -1,4 +1,4 @@
-#! /usr/bin/python
+#!/usr/bin/python
 # -*- coding: utf-8 -*-
 
 """Test the classic PyGreSQL interface.

Modified: trunk/tests/test_classic_notification.py (968 => 969)


--- trunk/tests/test_classic_notification.py	2019-01-06 20:17:40 UTC (rev 968)
+++ trunk/tests/test_classic_notification.py	2019-04-19 13:35:23 UTC (rev 969)
@@ -1,4 +1,4 @@
-#! /usr/bin/python
+#!/usr/bin/python
 # -*- coding: utf-8 -*-
 
 """Test the classic PyGreSQL interface.

Modified: trunk/tests/test_dbapi20.py (968 => 969)


--- trunk/tests/test_dbapi20.py	2019-01-06 20:17:40 UTC (rev 968)
+++ trunk/tests/test_dbapi20.py	2019-04-19 13:35:23 UTC (rev 969)
@@ -1,4 +1,4 @@
-#! /usr/bin/python
+#!/usr/bin/python
 # -*- coding: utf-8 -*-
 # $Id$
 

Modified: trunk/tests/test_dbapi20_copy.py (968 => 969)


--- trunk/tests/test_dbapi20_copy.py	2019-01-06 20:17:40 UTC (rev 968)
+++ trunk/tests/test_dbapi20_copy.py	2019-04-19 13:35:23 UTC (rev 969)
@@ -1,4 +1,4 @@
-#! /usr/bin/python
+#!/usr/bin/python
 # -*- coding: utf-8 -*-
 
 """Test the modern PyGreSQL interface.

Modified: trunk/tests/test_tutorial.py (968 => 969)


--- trunk/tests/test_tutorial.py	2019-01-06 20:17:40 UTC (rev 968)
+++ trunk/tests/test_tutorial.py	2019-04-19 13:35:23 UTC (rev 969)
@@ -1,4 +1,4 @@
-#! /usr/bin/python
+#!/usr/bin/python
 # -*- coding: utf-8 -*-
 
 from __future__ import print_function
_______________________________________________
PyGreSQL mailing list
PyGreSQL@Vex.Net
https://mail.vex.net/mailman/listinfo/pygresql

Reply via email to