src/reportlab/lib/enums.py
author Alfie Roddan <alfie@reportlab.com>
Thu, 16 Nov 2023 15:45:56 +0000
changeset 4820 75a98b733bd2
parent 4528 e09377955af8
permissions -rw-r--r--
bug fix, comma missing - delvian....@gmail.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4330
617ffa6bbdc8 changes for release 3.4.0
robin <robin@reportlab.com>
parents: 4252
diff changeset
     1
#Copyright ReportLab Europe Ltd. 2000-2017
494
54257447cfe9 Changed to indirect copyright
rgbecker
parents: 118
diff changeset
     2
#see license.txt for license details
4528
e09377955af8 try to eliminate changed bitbucket.org references
robin
parents: 4370
diff changeset
     3
#history https://hg.reportlab.com/hg-public/reportlab/log/tip/src/reportlab/lib/enums.py
4252
fe660f227cac changes for release 3.3.0
robin
parents: 3617
diff changeset
     4
__version__='3.3.0'
118
6ed552aebeb4 Added enums.py as a place for project wide constants
rgbecker
parents:
diff changeset
     5
__doc__="""
3029
eded59f94021 adding docstrings to lib
andy
parents: 2964
diff changeset
     6
Container for constants. Hardly used!
118
6ed552aebeb4 Added enums.py as a place for project wide constants
rgbecker
parents:
diff changeset
     7
"""
6ed552aebeb4 Added enums.py as a place for project wide constants
rgbecker
parents:
diff changeset
     8
TA_LEFT = 0
6ed552aebeb4 Added enums.py as a place for project wide constants
rgbecker
parents:
diff changeset
     9
TA_CENTER = 1
6ed552aebeb4 Added enums.py as a place for project wide constants
rgbecker
parents:
diff changeset
    10
TA_RIGHT = 2
1683
7fa753e4420a Removed all trailing whitespace
andy_robinson
parents: 494
diff changeset
    11
TA_JUSTIFY = 4