summaryrefslogtreecommitdiff
path: root/PKG-INFO
blob: 48157522fcc2973e45673b400e522c379c377a09 (plain)
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
Metadata-Version: 1.1
Name: traceback2
Version: 1.4.0
Summary: Backports of the traceback module
Home-page: https://github.com/testing-cabal/traceback2
Author: Testing-cabal
Author-email: testing-cabal@lists.launchpad.net
License: UNKNOWN
Description: A backport of traceback to older supported Pythons.
        
         >>> import traceback2 as traceback
        
        Profit.
        
        Things to be aware of!
        
        In Python 2.x, unlike traceback, traceback2 creates unicode output (because it
        depends on the linecache2 module).
        
        Exception frame clearing silently does nothing if the interpreter in use does
        not support it.
        
        traceback2._some_str, which while not an official API is so old its likely in
        use behaves similarly to the Python3 version - objects where unicode(obj) fails
        but str(object) works will be shown as b'thestrvaluerepr'.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 6 - Mature
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development