Make the coding style more consistent with PEP-8.

This commit is contained in:
Russel Winder
2009-08-05 11:15:26 +01:00
parent a14ff1be5c
commit 8b9b254f6c
20 changed files with 212 additions and 213 deletions

View File

@@ -17,8 +17,8 @@
#
# Author: Russel Winder
Import ( 'environment' )
Import('environment')
objects = environment.Object ( Glob ( '*.c' ) )
objects = environment.Object(Glob('*.c'))
Return ( 'objects' )
Return('objects')

View File

@@ -17,8 +17,8 @@
#
# Author: Russel Winder
Import ( 'environment' )
Import('environment')
objects = environment.Object ( Glob ( '*.c' ) + Glob ( '*.S' ) )
objects = environment.Object(Glob('*.c') + Glob('*.S'))
Return ( 'objects' )
Return('objects')

View File

@@ -17,8 +17,8 @@
#
# Author: Russel Winder
Import ( 'environment' )
Import('environment')
objects = environment.Object ( Glob ( '*.c' ) + Glob ( '*.S' ) )
objects = environment.Object(Glob('*.c') + Glob('*.S'))
Return ( 'objects' )
Return('objects')

View File

@@ -17,8 +17,8 @@
#
# Author: Russel Winder
Import ( 'environment' )
Import('environment')
objects = environment.Object ( Glob ( '*.c' ) + Glob ( '*.S' ) )
objects = environment.Object(Glob('*.c') + Glob('*.S'))
Return ( 'objects' )
Return('objects')

View File

@@ -17,8 +17,8 @@
#
# Author: Russel Winder
Import ( 'environment' )
Import('environment')
objects = environment.Object ( Glob ( '*.c' ) )
objects = environment.Object(Glob('*.c'))
Return ( 'objects' )
Return('objects')

View File

@@ -17,8 +17,8 @@
#
# Author: Russel Winder
Import ( 'environment' )
Import('environment')
objects = environment.Object ( Glob ( '*.c' ) )
objects = environment.Object(Glob('*.c'))
Return ( 'objects' )
Return('objects')

View File

@@ -17,8 +17,8 @@
#
# Author: Russel Winder
Import ( 'environment' )
Import('environment')
objects = environment.Object ( Glob ( '*.c' ) )
objects = environment.Object(Glob('*.c'))
Return ( 'objects' )
Return('objects')

View File

@@ -17,8 +17,8 @@
#
# Author: Russel Winder
Import ( 'environment' )
Import('environment')
objects = environment.Object ( Glob ( '*.c' ) )
objects = environment.Object(Glob('*.c'))
Return ( 'objects' )
Return('objects')

View File

@@ -17,8 +17,8 @@
#
# Author: Russel Winder
Import ( 'environment' )
Import('environment')
objects = environment.Object ( Glob ( '*.c' ) )
objects = environment.Object(Glob('*.c'))
Return ( 'objects' )
Return('objects')

View File

@@ -17,8 +17,8 @@
#
# Author: Russel Winder
Import ( 'environment' )
Import('environment')
objects = environment.Object ( Glob ( '*.c' ) )
objects = environment.Object(Glob('*.c'))
Return ( 'objects' )
Return('objects')

View File

@@ -17,8 +17,8 @@
#
# Author: Russel Winder
Import ( 'environment' )
Import('environment')
objects = environment.Object ( Glob ( '*.c' ) + Glob ( '*.S' ) )
objects = environment.Object(Glob('*.c') + Glob('*.S'))
Return ( 'objects' )
Return('objects')