~vomun-developers/anonplus/vomun-trunk

« back to all changes in this revision

Viewing changes to src/libs/globals.py

  • Committer: AJ00200
  • Date: 2011-11-22 03:30:05 UTC
  • Revision ID: git-v1:ed0d14664e7cd4dde55cc3a23e4ac5d48710622e
Added new unit tests for code that should not change much.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
'''Global variable storage'''
 
2
 
 
3
global_vars = {
 
4
    'running': True,
 
5
    'anon+': {
 
6
        'VERSION': 'v0.1.0',
 
7
        'BUILD': 4,
 
8
    }
 
9
}
 
10
 
 
11
global_vars['anon+']['banner'] = '''
 
12
======================
 
13
= Anon+ %s
 
14
= Build: %s
 
15
======================
 
16
'''