~ubuntu-branches/debian/wheezy/phatch/wheezy

« back to all changes in this revision

Viewing changes to phatch/lib/safe.py

  • Committer: Bazaar Package Importer
  • Author(s): Stani M, Stani M, Bernd Zeimetz
  • Date: 2009-12-10 01:07:36 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20091210010736-uuvl2nhhjh1u5fen
Tags: 0.2.5-1
[ Stani M ]
* Upstream bugfix release (Closes LP: #454426, #458366, #469231, #481751,
  #492665)
* debian/watch: updated new location

[ Bernd Zeimetz ] 
* debian/control:
  - Removing myself from Uploaders. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
    'int': ['abs', 'int', 'min', 'max', 'pow', 'sum'],
25
25
    'str': ['chr', 'lower', 'str', 'title', 'upper'],
26
26
    'bool': ['True', 'False'],
 
27
    'datetime': ['day', 'hour', 'microsecond', 'minute', 'month',
 
28
        'monthname', 'second', 'weekday', 'weekdayname', 'year'],
 
29
    'rational': ['denominator', 'numerator'],
27
30
}
28
31
SAFE['all'] = reduce(operator.add, SAFE.values())
29
32