From 23ebd32bf3db0235284476029c44e790a8a32c61 Mon Sep 17 00:00:00 2001 From: Dilawar Singh <dilawars@ncbs.res.in> Date: Sat, 19 Nov 2016 12:41:37 +0530 Subject: [PATCH] Since none of the following files was executable, removed shebangs. --- moose-examples/neuroml/lobster_pyloric/synapses/AchSyn_STG.py | 2 +- moose-examples/neuroml/lobster_pyloric/synapses/GluSyn_STG.py | 2 +- .../neuroml/lobster_pyloric/synapses/load_synapses.py | 2 +- moose-examples/paper-2015/Fig2_elecModels/Fig2A.py | 2 +- moose-examples/paper-2015/Fig6_NetMultiscale/Fig6A.py | 2 +- moose-examples/paper-2015/Fig6_NetMultiscale/Fig6BCDE.py | 2 +- moose-examples/paper-2015/Fig6_NetMultiscale/ReducedModel.py | 2 +- .../snippets/GraupnerBrunel2012_STDPfromCaPlasticity.py | 2 +- .../snippets/HigginsGraupnerBrunel2014_LifetimeCaPlasticity.py | 2 +- moose-examples/snippets/IntegrateFireZoo.py | 2 +- moose-examples/snippets/STDP.py | 2 +- moose-examples/snippets/hdfdemo.py | 2 +- moose-examples/snippets/pulsegen.py | 2 +- moose-examples/snippets/pulsegen2.py | 2 +- moose-examples/snippets/showmsg.py | 2 +- moose-examples/snippets/testHsolve.py | 2 +- moose-examples/squid/squid_demo.py | 2 +- .../tutorials/ExcInhNet/ExcInhNet_Ostojic2014_Brunel2000.py | 2 +- .../ExcInhNet/ExcInhNet_Ostojic2014_Brunel2000_brian.py | 2 +- .../ExcInhNet/ExcInhNet_Ostojic2014_Brunel2000_brian2.py | 2 +- .../ExcInhNet_Ostojic2014_Brunel2000_brian2_slow_2pops_4syns.py | 2 +- .../ExcInhNet_HigginsGraupnerBrunel2014.py | 2 +- moose-examples/util/moogli_viewer.py | 2 +- 23 files changed, 23 insertions(+), 23 deletions(-) diff --git a/moose-examples/neuroml/lobster_pyloric/synapses/AchSyn_STG.py b/moose-examples/neuroml/lobster_pyloric/synapses/AchSyn_STG.py index 2c8f9690..65c6a880 100644 --- a/moose-examples/neuroml/lobster_pyloric/synapses/AchSyn_STG.py +++ b/moose-examples/neuroml/lobster_pyloric/synapses/AchSyn_STG.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python + # -*- coding: utf-8 -*- import sys import math diff --git a/moose-examples/neuroml/lobster_pyloric/synapses/GluSyn_STG.py b/moose-examples/neuroml/lobster_pyloric/synapses/GluSyn_STG.py index 256525b9..c8cdbecd 100644 --- a/moose-examples/neuroml/lobster_pyloric/synapses/GluSyn_STG.py +++ b/moose-examples/neuroml/lobster_pyloric/synapses/GluSyn_STG.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python + # -*- coding: utf-8 -*- import sys import math diff --git a/moose-examples/neuroml/lobster_pyloric/synapses/load_synapses.py b/moose-examples/neuroml/lobster_pyloric/synapses/load_synapses.py index 468ca332..fe8b50ee 100644 --- a/moose-examples/neuroml/lobster_pyloric/synapses/load_synapses.py +++ b/moose-examples/neuroml/lobster_pyloric/synapses/load_synapses.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python + # -*- coding: utf-8 -*- from GluSyn_STG import GluSyn_STG diff --git a/moose-examples/paper-2015/Fig2_elecModels/Fig2A.py b/moose-examples/paper-2015/Fig2_elecModels/Fig2A.py index 997b5f2b..560167da 100644 --- a/moose-examples/paper-2015/Fig2_elecModels/Fig2A.py +++ b/moose-examples/paper-2015/Fig2_elecModels/Fig2A.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python + #/********************************************************************** #** This program is part of 'MOOSE', the #** Messaging Object Oriented Simulation Environment. diff --git a/moose-examples/paper-2015/Fig6_NetMultiscale/Fig6A.py b/moose-examples/paper-2015/Fig6_NetMultiscale/Fig6A.py index 752fa896..88193dbc 100644 --- a/moose-examples/paper-2015/Fig6_NetMultiscale/Fig6A.py +++ b/moose-examples/paper-2015/Fig6_NetMultiscale/Fig6A.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python + #/********************************************************************** #** This program is part of 'MOOSE', the #** Messaging Object Oriented Simulation Environment. diff --git a/moose-examples/paper-2015/Fig6_NetMultiscale/Fig6BCDE.py b/moose-examples/paper-2015/Fig6_NetMultiscale/Fig6BCDE.py index 066e68d1..1c876b91 100644 --- a/moose-examples/paper-2015/Fig6_NetMultiscale/Fig6BCDE.py +++ b/moose-examples/paper-2015/Fig6_NetMultiscale/Fig6BCDE.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python + #/********************************************************************** #** This program is part of 'MOOSE', the #** Messaging Object Oriented Simulation Environment. diff --git a/moose-examples/paper-2015/Fig6_NetMultiscale/ReducedModel.py b/moose-examples/paper-2015/Fig6_NetMultiscale/ReducedModel.py index 6b0ae964..75c51617 100644 --- a/moose-examples/paper-2015/Fig6_NetMultiscale/ReducedModel.py +++ b/moose-examples/paper-2015/Fig6_NetMultiscale/ReducedModel.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python + #/********************************************************************** #** This program is part of 'MOOSE', the #** Messaging Object Oriented Simulation Environment. diff --git a/moose-examples/snippets/GraupnerBrunel2012_STDPfromCaPlasticity.py b/moose-examples/snippets/GraupnerBrunel2012_STDPfromCaPlasticity.py index c26b623e..ee0ab8a9 100644 --- a/moose-examples/snippets/GraupnerBrunel2012_STDPfromCaPlasticity.py +++ b/moose-examples/snippets/GraupnerBrunel2012_STDPfromCaPlasticity.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python + #/********************************************************************** #** This program is part of 'MOOSE', the #** Messaging Object Oriented Simulation Environment. diff --git a/moose-examples/snippets/HigginsGraupnerBrunel2014_LifetimeCaPlasticity.py b/moose-examples/snippets/HigginsGraupnerBrunel2014_LifetimeCaPlasticity.py index 04800616..f4647cc0 100644 --- a/moose-examples/snippets/HigginsGraupnerBrunel2014_LifetimeCaPlasticity.py +++ b/moose-examples/snippets/HigginsGraupnerBrunel2014_LifetimeCaPlasticity.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python + #/********************************************************************** #** This program is part of 'MOOSE', the #** Messaging Object Oriented Simulation Environment. diff --git a/moose-examples/snippets/IntegrateFireZoo.py b/moose-examples/snippets/IntegrateFireZoo.py index 3d138452..b715519b 100644 --- a/moose-examples/snippets/IntegrateFireZoo.py +++ b/moose-examples/snippets/IntegrateFireZoo.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python + # -*- coding: utf-8 -*- #/********************************************************************** #** This program is part of 'MOOSE', the diff --git a/moose-examples/snippets/STDP.py b/moose-examples/snippets/STDP.py index ba01a96d..dec9be84 100644 --- a/moose-examples/snippets/STDP.py +++ b/moose-examples/snippets/STDP.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python + #/********************************************************************** #** This program is part of 'MOOSE', the #** Messaging Object Oriented Simulation Environment. diff --git a/moose-examples/snippets/hdfdemo.py b/moose-examples/snippets/hdfdemo.py index f9081c2e..f1fdc2e7 100644 --- a/moose-examples/snippets/hdfdemo.py +++ b/moose-examples/snippets/hdfdemo.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python + # Author: Subhasis Ray """HDF5 is a self-describing file format for storing large diff --git a/moose-examples/snippets/pulsegen.py b/moose-examples/snippets/pulsegen.py index 2d554a93..2f6cfa36 100644 --- a/moose-examples/snippets/pulsegen.py +++ b/moose-examples/snippets/pulsegen.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python + # pulsegen.py --- # # Filename: pulsegen.py diff --git a/moose-examples/snippets/pulsegen2.py b/moose-examples/snippets/pulsegen2.py index 491ebf6b..812e6302 100644 --- a/moose-examples/snippets/pulsegen2.py +++ b/moose-examples/snippets/pulsegen2.py @@ -40,7 +40,7 @@ # You should have received a copy of the GNU General Public License # along with this program; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, Fifth -# Floor, Boston, MA 02110-1301, USA.#!/usr/bin/env python +# Floor, Boston, MA 02110-1301, USA. # # diff --git a/moose-examples/snippets/showmsg.py b/moose-examples/snippets/showmsg.py index 98b9677a..38535e69 100644 --- a/moose-examples/snippets/showmsg.py +++ b/moose-examples/snippets/showmsg.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python + """This is to show a _raw_ way of traversing messages.""" import sys sys.path.append('../../python') diff --git a/moose-examples/snippets/testHsolve.py b/moose-examples/snippets/testHsolve.py index 77bf3a16..7eba6625 100644 --- a/moose-examples/snippets/testHsolve.py +++ b/moose-examples/snippets/testHsolve.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python + # testHsolve.py --- # Upi Bhalla, NCBS Bangalore, 9 June 2013. # diff --git a/moose-examples/squid/squid_demo.py b/moose-examples/squid/squid_demo.py index 7207044f..85a35186 100644 --- a/moose-examples/squid/squid_demo.py +++ b/moose-examples/squid/squid_demo.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python + # -*- coding: utf-8 -*- # squidgui.py --- # diff --git a/moose-examples/tutorials/ExcInhNet/ExcInhNet_Ostojic2014_Brunel2000.py b/moose-examples/tutorials/ExcInhNet/ExcInhNet_Ostojic2014_Brunel2000.py index b5ea3f10..aa35d469 100644 --- a/moose-examples/tutorials/ExcInhNet/ExcInhNet_Ostojic2014_Brunel2000.py +++ b/moose-examples/tutorials/ExcInhNet/ExcInhNet_Ostojic2014_Brunel2000.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python + #/********************************************************************** #** This program is part of 'MOOSE', the #** Messaging Object Oriented Simulation Environment. diff --git a/moose-examples/tutorials/ExcInhNet/ExcInhNet_Ostojic2014_Brunel2000_brian.py b/moose-examples/tutorials/ExcInhNet/ExcInhNet_Ostojic2014_Brunel2000_brian.py index 7cc9062c..2c9859b3 100644 --- a/moose-examples/tutorials/ExcInhNet/ExcInhNet_Ostojic2014_Brunel2000_brian.py +++ b/moose-examples/tutorials/ExcInhNet/ExcInhNet_Ostojic2014_Brunel2000_brian.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python + ''' The LIF network is based on: Ostojic, S. (2014). diff --git a/moose-examples/tutorials/ExcInhNet/ExcInhNet_Ostojic2014_Brunel2000_brian2.py b/moose-examples/tutorials/ExcInhNet/ExcInhNet_Ostojic2014_Brunel2000_brian2.py index 1b66c617..c4c77701 100644 --- a/moose-examples/tutorials/ExcInhNet/ExcInhNet_Ostojic2014_Brunel2000_brian2.py +++ b/moose-examples/tutorials/ExcInhNet/ExcInhNet_Ostojic2014_Brunel2000_brian2.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python + ''' The LIF network is based on: Ostojic, S. (2014). diff --git a/moose-examples/tutorials/ExcInhNet/ExcInhNet_Ostojic2014_Brunel2000_brian2_slow_2pops_4syns.py b/moose-examples/tutorials/ExcInhNet/ExcInhNet_Ostojic2014_Brunel2000_brian2_slow_2pops_4syns.py index 8e1dcdb4..92b8f122 100644 --- a/moose-examples/tutorials/ExcInhNet/ExcInhNet_Ostojic2014_Brunel2000_brian2_slow_2pops_4syns.py +++ b/moose-examples/tutorials/ExcInhNet/ExcInhNet_Ostojic2014_Brunel2000_brian2_slow_2pops_4syns.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python + ''' The LIF network is based on: Ostojic, S. (2014). diff --git a/moose-examples/tutorials/ExcInhNetCaPlasticity/ExcInhNet_HigginsGraupnerBrunel2014.py b/moose-examples/tutorials/ExcInhNetCaPlasticity/ExcInhNet_HigginsGraupnerBrunel2014.py index 07a227bf..1b29b512 100644 --- a/moose-examples/tutorials/ExcInhNetCaPlasticity/ExcInhNet_HigginsGraupnerBrunel2014.py +++ b/moose-examples/tutorials/ExcInhNetCaPlasticity/ExcInhNet_HigginsGraupnerBrunel2014.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python + #/********************************************************************** #** This program is part of 'MOOSE', the #** Messaging Object Oriented Simulation Environment. diff --git a/moose-examples/util/moogli_viewer.py b/moose-examples/util/moogli_viewer.py index 7d123edd..f48330c8 100644 --- a/moose-examples/util/moogli_viewer.py +++ b/moose-examples/util/moogli_viewer.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python + # -*- coding: utf-8 -*- """ -- GitLab