"Fossies" - the Fresh Open Source Software Archive 
Member "mailman-2.1.39/Mailman/Version.py" (13 Dec 2021, 1501 Bytes) of package /linux/misc/mailman-2.1.39.tgz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Python source code syntax highlighting (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
For more information about "Version.py" see the
Fossies "Dox" file reference documentation and the latest
Fossies "Diffs" side-by-side code changes report:
2.1.38_vs_2.1.39.
1 # Copyright (C) 1998-2018 by the Free Software Foundation, Inc.
2 #
3 # This program is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU General Public License
5 # as published by the Free Software Foundation; either version 2
6 # of the License, or (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
16 # USA.
17
18 # Mailman version
19 VERSION = '2.1.39'
20
21 # And as a hex number in the manner of PY_VERSION_HEX
22 ALPHA = 0xa
23 BETA = 0xb
24 GAMMA = 0xc
25 # release candidates
26 RC = GAMMA
27 FINAL = 0xf
28
29 MAJOR_REV = 2
30 MINOR_REV = 1
31 MICRO_REV = 39
32 REL_LEVEL = FINAL
33 # at most 15 beta releases!
34 REL_SERIAL = 0
35
36 HEX_VERSION = ((MAJOR_REV << 24) | (MINOR_REV << 16) | (MICRO_REV << 8) |
37 (REL_LEVEL << 4) | (REL_SERIAL << 0))
38
39 # config.pck schema version number
40 DATA_FILE_VERSION = 112
41
42 # qfile/*.db schema version number
43 QFILE_SCHEMA_VERSION = 3
44
45 # version number for the lists/<listname>/pending.db file schema
46 PENDING_FILE_SCHEMA_VERSION = 2
47
48 # version number for the lists/<listname>/request.db file schema
49 REQUESTS_FILE_SCHEMA_VERSION = 1