annotate test.py @ 28:5b0bb4f8d8b0 default tip

test commit
author Neil Muller <drnlmuller@gmail.com>
date Tue, 02 Feb 2021 22:25:49 +0200
parents 5c38e4f82285
children
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
23
df39b71bd80a Trigger a commit
Neil Muller <drnlmuller@gmail.com>
parents: 7
diff changeset
10 return None
1
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
25
4645249b8f5e Test after Ubuntu upgrade
Neil Muller <drnlmuller@gmail.com>
parents: 23
diff changeset
13 def help():
4645249b8f5e Test after Ubuntu upgrade
Neil Muller <drnlmuller@gmail.com>
parents: 23
diff changeset
14 print("You're on your own here")
28
5b0bb4f8d8b0 test commit
Neil Muller <drnlmuller@gmail.com>
parents: 27
diff changeset
15 print("Really")
25
4645249b8f5e Test after Ubuntu upgrade
Neil Muller <drnlmuller@gmail.com>
parents: 23
diff changeset
16
4645249b8f5e Test after Ubuntu upgrade
Neil Muller <drnlmuller@gmail.com>
parents: 23
diff changeset
17
1
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
18 if __name__ == "__main__":
2
b772d357d698 This push should fail
Neil Muller <drnlmuller@gmail.com>
parents: 1
diff changeset
19 main(sys.argv)