~ubuntu-branches/ubuntu/karmic/python-scipy/karmic

« back to all changes in this revision

Viewing changes to Lib/fftpack/fftpack_version.py

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T. Chen (new)
  • Date: 2005-03-16 02:15:29 UTC
  • Revision ID: james.westby@ubuntu.com-20050316021529-xrjlowsejs0cijig
Tags: upstream-0.3.2
ImportĀ upstreamĀ versionĀ 0.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
major = 0
 
2
minor = 2
 
3
micro = 1
 
4
release_level = 'alpha'
 
5
 
 
6
from __cvs_version__ import cvs_version
 
7
cvs_minor = cvs_version[-3]
 
8
cvs_serial = cvs_version[-1]
 
9
 
 
10
fftpack_version = '%(major)d.%(minor)d.%(micro)d_%(release_level)s'\
 
11
                  '_%(cvs_minor)d.%(cvs_serial)d' % (locals ())