annotate test.py @ 4:8fb524440907

This push should work
author Neil Muller <drnlmuller@gmail.com>
date Sat, 05 May 2012 16:47:44 +0200
parents 8cb24da1f91c
children e3fee6ceaf19
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
1 #!/usr/bin/python
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
2
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
3 """Test script to be used for hghooks debugging"""
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
4
3
8cb24da1f91c Pep8 but not pyflakes clean. Should still fail
Neil Muller <drnlmuller@gmail.com>
parents: 2
diff changeset
5 import sys
2
b772d357d698 This push should fail
Neil Muller <drnlmuller@gmail.com>
parents: 1
diff changeset
6
1
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
7
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
8 def main(args):
3
8cb24da1f91c Pep8 but not pyflakes clean. Should still fail
Neil Muller <drnlmuller@gmail.com>
parents: 2
diff changeset
9 print args
1
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
10
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
11
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
12 if __name__ == "__main__":
2
b772d357d698 This push should fail
Neil Muller <drnlmuller@gmail.com>
parents: 1
diff changeset
13 main(sys.argv)