File: PKG-INFO

package info (click to toggle)
enum34 1.1.6-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 320 kB
  • sloc: python: 2,183; makefile: 7
file content (62 lines) | stat: -rw-r--r-- 2,012 bytes parent folder | download | duplicates (28)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
Metadata-Version: 1.1
Name: enum34
Version: 1.1.6
Summary: Python 3.4 Enum backported to 3.3, 3.2, 3.1, 2.7, 2.6, 2.5, and 2.4
Home-page: https://bitbucket.org/stoneleaf/enum34
Author: Ethan Furman
Author-email: ethan@stoneleaf.us
License: BSD License
Description: enum --- support for enumerations
        ========================================
        
        An enumeration is a set of symbolic names (members) bound to unique, constant
        values.  Within an enumeration, the members can be compared by identity, and
        the enumeration itself can be iterated over.
        
            from enum import Enum
        
            class Fruit(Enum):
                apple = 1
                banana = 2
                orange = 3
        
            list(Fruit)
            # [<Fruit.apple: 1>, <Fruit.banana: 2>, <Fruit.orange: 3>]
        
            len(Fruit)
            # 3
        
            Fruit.banana
            # <Fruit.banana: 2>
        
            Fruit['banana']
            # <Fruit.banana: 2>
        
            Fruit(2)
            # <Fruit.banana: 2>
        
            Fruit.banana is Fruit['banana'] is Fruit(2)
            # True
        
            Fruit.banana.name
            # 'banana'
        
            Fruit.banana.value
            # 2
        
        Repository and Issue Tracker at https://bitbucket.org/stoneleaf/enum34.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
Classifier: Programming Language :: Python :: 2.4
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Provides: enum