From 442e83232c4f3f65023a21a41c4e841780cab3e5 Mon Sep 17 00:00:00 2001 From: Joel Bender Date: Wed, 30 Nov 2016 21:08:45 -0500 Subject: [PATCH] set the remaining samples executable and fix the shebang line for the Python 2.5 samples --- samples/DateStringPatterns.py | 0 samples/RecurringMultipleReadProperty.py | 0 samples/TCPClient.py | 0 samples/TCPClient25.py | 2 +- samples/TCPServer25.py | 2 +- 5 files changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 samples/DateStringPatterns.py mode change 100644 => 100755 samples/RecurringMultipleReadProperty.py mode change 100644 => 100755 samples/TCPClient.py diff --git a/samples/DateStringPatterns.py b/samples/DateStringPatterns.py old mode 100644 new mode 100755 diff --git a/samples/RecurringMultipleReadProperty.py b/samples/RecurringMultipleReadProperty.py old mode 100644 new mode 100755 diff --git a/samples/TCPClient.py b/samples/TCPClient.py old mode 100644 new mode 100755 diff --git a/samples/TCPClient25.py b/samples/TCPClient25.py index 458fe48a..4f51f78e 100755 --- a/samples/TCPClient25.py +++ b/samples/TCPClient25.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2.5 """ This simple TCP client application connects to a server and sends the text diff --git a/samples/TCPServer25.py b/samples/TCPServer25.py index 604aeb3c..96c11bb1 100755 --- a/samples/TCPServer25.py +++ b/samples/TCPServer25.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2.5 """ This simple TCP server application listens for one or more client connections