Skip to content

Commit d198a8b

Browse files
committed
Added the Project Files for Redactor Unredactor
0 parents  commit d198a8b

File tree

25,816 files changed

+116357
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

25,816 files changed

+116357
-0
lines changed

.cache/v/cache/lastfailed

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

.eggs/README.txt

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
This directory contains eggs that were downloaded by setuptools to build, test, and run plug-ins.
2+
3+
This directory caches those eggs to prevent repeated downloads.
4+
5+
However, it is safe to delete this directory.
6+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
Metadata-Version: 1.1
2+
Name: py
3+
Version: 1.4.33
4+
Summary: library with cross-python path, ini-parsing, io, code, log facilities
5+
Home-page: http://py.readthedocs.io/
6+
Author: holger krekel, Ronny Pfannschmidt, Benjamin Peterson and others
7+
Author-email: [email protected]
8+
License: MIT license
9+
Description: .. image:: https://img.shields.io/pypi/pyversions/pytest.svg
10+
:target: https://pypi.org/project/py
11+
.. image:: https://img.shields.io/travis/pytest-dev/py.svg
12+
:target: https://travis-ci.org/pytest-dev/py
13+
14+
The py lib is a Python development support library featuring
15+
the following tools and modules:
16+
17+
* ``py.path``: uniform local and svn path objects
18+
* ``py.apipkg``: explicit API control and lazy-importing
19+
* ``py.iniconfig``: easy parsing of .ini files
20+
* ``py.code``: dynamic code generation and introspection
21+
22+
NOTE: prior to the 1.4 release this distribution used to
23+
contain py.test which is now its own package, see http://pytest.org
24+
25+
For questions and more information please visit http://py.readthedocs.org
26+
27+
Bugs and issues: https://github.com/pytest-dev/py
28+
29+
Authors: Holger Krekel and others, 2004-2017
30+
31+
Platform: unix
32+
Platform: linux
33+
Platform: osx
34+
Platform: cygwin
35+
Platform: win32
36+
Classifier: Development Status :: 6 - Mature
37+
Classifier: Intended Audience :: Developers
38+
Classifier: License :: OSI Approved :: MIT License
39+
Classifier: Operating System :: POSIX
40+
Classifier: Operating System :: Microsoft :: Windows
41+
Classifier: Operating System :: MacOS :: MacOS X
42+
Classifier: Topic :: Software Development :: Testing
43+
Classifier: Topic :: Software Development :: Libraries
44+
Classifier: Topic :: Utilities
45+
Classifier: Programming Language :: Python
46+
Classifier: Programming Language :: Python :: 3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
AUTHORS
2+
CHANGELOG
3+
LICENSE
4+
MANIFEST.in
5+
README.rst
6+
conftest.py
7+
setup.cfg
8+
setup.py
9+
tox.ini
10+
doc/Makefile
11+
doc/changelog.txt
12+
doc/code.txt
13+
doc/conf.py
14+
doc/download.html
15+
doc/faq.txt
16+
doc/index.txt
17+
doc/install.txt
18+
doc/io.txt
19+
doc/links.inc
20+
doc/log.txt
21+
doc/misc.txt
22+
doc/path.txt
23+
doc/style.css
24+
doc/xml.txt
25+
doc/_templates/layout.html
26+
doc/announce/release-0.9.0.txt
27+
doc/announce/release-0.9.2.txt
28+
doc/announce/release-1.0.0.txt
29+
doc/announce/release-1.0.1.txt
30+
doc/announce/release-1.0.2.txt
31+
doc/announce/release-1.1.0.txt
32+
doc/announce/release-1.1.1.txt
33+
doc/announce/release-1.2.0.txt
34+
doc/announce/release-1.2.1.txt
35+
doc/announce/release-1.3.0.txt
36+
doc/announce/release-1.3.1.txt
37+
doc/announce/release-1.3.2.txt
38+
doc/announce/release-1.3.3.txt
39+
doc/announce/release-1.3.4.txt
40+
doc/announce/release-1.4.0.txt
41+
doc/announce/release-1.4.1.txt
42+
doc/announce/releases.txt
43+
doc/example/genhtml.py
44+
doc/example/genhtmlcss.py
45+
doc/example/genxml.py
46+
doc/img/pylib.png
47+
py/__init__.py
48+
py/__metainfo.py
49+
py/_apipkg.py
50+
py/_builtin.py
51+
py/_error.py
52+
py/_iniconfig.py
53+
py/_std.py
54+
py/_xmlgen.py
55+
py/test.py
56+
py.egg-info/PKG-INFO
57+
py.egg-info/SOURCES.txt
58+
py.egg-info/dependency_links.txt
59+
py.egg-info/not-zip-safe
60+
py.egg-info/top_level.txt
61+
py/_code/__init__.py
62+
py/_code/_assertionnew.py
63+
py/_code/_assertionold.py
64+
py/_code/_py2traceback.py
65+
py/_code/assertion.py
66+
py/_code/code.py
67+
py/_code/source.py
68+
py/_io/__init__.py
69+
py/_io/capture.py
70+
py/_io/saferepr.py
71+
py/_io/terminalwriter.py
72+
py/_log/__init__.py
73+
py/_log/log.py
74+
py/_log/warning.py
75+
py/_path/__init__.py
76+
py/_path/cacheutil.py
77+
py/_path/common.py
78+
py/_path/local.py
79+
py/_path/svnurl.py
80+
py/_path/svnwc.py
81+
py/_process/__init__.py
82+
py/_process/cmdexec.py
83+
py/_process/forkedfunc.py
84+
py/_process/killproc.py
85+
testing/conftest.py
86+
testing/test_iniconfig.py
87+
testing/code/test_assertion.py
88+
testing/code/test_code.py
89+
testing/code/test_excinfo.py
90+
testing/code/test_source.py
91+
testing/io_/__init__.py
92+
testing/io_/test_capture.py
93+
testing/io_/test_saferepr.py
94+
testing/io_/test_terminalwriter.py
95+
testing/log/__init__.py
96+
testing/log/test_log.py
97+
testing/log/test_warning.py
98+
testing/path/common.py
99+
testing/path/conftest.py
100+
testing/path/repotest.dump
101+
testing/path/svntestbase.py
102+
testing/path/test_cacheutil.py
103+
testing/path/test_local.py
104+
testing/path/test_svnauth.py
105+
testing/path/test_svnurl.py
106+
testing/path/test_svnwc.py
107+
testing/process/__init__.py
108+
testing/process/test_cmdexec.py
109+
testing/process/test_forkedfunc.py
110+
testing/process/test_killproc.py
111+
testing/root/__init__.py
112+
testing/root/test_builtin.py
113+
testing/root/test_error.py
114+
testing/root/test_py_imports.py
115+
testing/root/test_std.py
116+
testing/root/test_xmlgen.py
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
py
+152
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,152 @@
1+
"""
2+
pylib: rapid testing and development utils
3+
4+
this module uses apipkg.py for lazy-loading sub modules
5+
and classes. The initpkg-dictionary below specifies
6+
name->value mappings where value can be another namespace
7+
dictionary or an import path.
8+
9+
(c) Holger Krekel and others, 2004-2014
10+
"""
11+
__version__ = '1.4.33'
12+
13+
from py import _apipkg
14+
15+
# so that py.error.* instances are picklable
16+
import sys
17+
sys.modules['py.error'] = _apipkg.AliasModule("py.error", "py._error", 'error')
18+
import py.error # "Dereference" it now just to be safe (issue110)
19+
20+
21+
_apipkg.initpkg(__name__, attr={'_apipkg': _apipkg}, exportdefs={
22+
# access to all standard lib modules
23+
'std': '._std:std',
24+
# access to all posix errno's as classes
25+
'error': '._error:error',
26+
27+
'_pydir' : '.__metainfo:pydir',
28+
'version': 'py:__version__', # backward compatibility
29+
30+
# pytest-2.0 has a flat namespace, we use alias modules
31+
# to keep old references compatible
32+
'test' : 'pytest',
33+
'test.collect' : 'pytest',
34+
'test.cmdline' : 'pytest',
35+
36+
# hook into the top-level standard library
37+
'process' : {
38+
'__doc__' : '._process:__doc__',
39+
'cmdexec' : '._process.cmdexec:cmdexec',
40+
'kill' : '._process.killproc:kill',
41+
'ForkedFunc' : '._process.forkedfunc:ForkedFunc',
42+
},
43+
44+
'apipkg' : {
45+
'initpkg' : '._apipkg:initpkg',
46+
'ApiModule' : '._apipkg:ApiModule',
47+
},
48+
49+
'iniconfig' : {
50+
'IniConfig' : '._iniconfig:IniConfig',
51+
'ParseError' : '._iniconfig:ParseError',
52+
},
53+
54+
'path' : {
55+
'__doc__' : '._path:__doc__',
56+
'svnwc' : '._path.svnwc:SvnWCCommandPath',
57+
'svnurl' : '._path.svnurl:SvnCommandPath',
58+
'local' : '._path.local:LocalPath',
59+
'SvnAuth' : '._path.svnwc:SvnAuth',
60+
},
61+
62+
# python inspection/code-generation API
63+
'code' : {
64+
'__doc__' : '._code:__doc__',
65+
'compile' : '._code.source:compile_',
66+
'Source' : '._code.source:Source',
67+
'Code' : '._code.code:Code',
68+
'Frame' : '._code.code:Frame',
69+
'ExceptionInfo' : '._code.code:ExceptionInfo',
70+
'Traceback' : '._code.code:Traceback',
71+
'getfslineno' : '._code.source:getfslineno',
72+
'getrawcode' : '._code.code:getrawcode',
73+
'patch_builtins' : '._code.code:patch_builtins',
74+
'unpatch_builtins' : '._code.code:unpatch_builtins',
75+
'_AssertionError' : '._code.assertion:AssertionError',
76+
'_reinterpret_old' : '._code.assertion:reinterpret_old',
77+
'_reinterpret' : '._code.assertion:reinterpret',
78+
'_reprcompare' : '._code.assertion:_reprcompare',
79+
'_format_explanation' : '._code.assertion:_format_explanation',
80+
},
81+
82+
# backports and additions of builtins
83+
'builtin' : {
84+
'__doc__' : '._builtin:__doc__',
85+
'enumerate' : '._builtin:enumerate',
86+
'reversed' : '._builtin:reversed',
87+
'sorted' : '._builtin:sorted',
88+
'any' : '._builtin:any',
89+
'all' : '._builtin:all',
90+
'set' : '._builtin:set',
91+
'frozenset' : '._builtin:frozenset',
92+
'BaseException' : '._builtin:BaseException',
93+
'GeneratorExit' : '._builtin:GeneratorExit',
94+
'_sysex' : '._builtin:_sysex',
95+
'print_' : '._builtin:print_',
96+
'_reraise' : '._builtin:_reraise',
97+
'_tryimport' : '._builtin:_tryimport',
98+
'exec_' : '._builtin:exec_',
99+
'_basestring' : '._builtin:_basestring',
100+
'_totext' : '._builtin:_totext',
101+
'_isbytes' : '._builtin:_isbytes',
102+
'_istext' : '._builtin:_istext',
103+
'_getimself' : '._builtin:_getimself',
104+
'_getfuncdict' : '._builtin:_getfuncdict',
105+
'_getcode' : '._builtin:_getcode',
106+
'builtins' : '._builtin:builtins',
107+
'execfile' : '._builtin:execfile',
108+
'callable' : '._builtin:callable',
109+
'bytes' : '._builtin:bytes',
110+
'text' : '._builtin:text',
111+
},
112+
113+
# input-output helping
114+
'io' : {
115+
'__doc__' : '._io:__doc__',
116+
'dupfile' : '._io.capture:dupfile',
117+
'TextIO' : '._io.capture:TextIO',
118+
'BytesIO' : '._io.capture:BytesIO',
119+
'FDCapture' : '._io.capture:FDCapture',
120+
'StdCapture' : '._io.capture:StdCapture',
121+
'StdCaptureFD' : '._io.capture:StdCaptureFD',
122+
'TerminalWriter' : '._io.terminalwriter:TerminalWriter',
123+
'ansi_print' : '._io.terminalwriter:ansi_print',
124+
'get_terminal_width' : '._io.terminalwriter:get_terminal_width',
125+
'saferepr' : '._io.saferepr:saferepr',
126+
},
127+
128+
# small and mean xml/html generation
129+
'xml' : {
130+
'__doc__' : '._xmlgen:__doc__',
131+
'html' : '._xmlgen:html',
132+
'Tag' : '._xmlgen:Tag',
133+
'raw' : '._xmlgen:raw',
134+
'Namespace' : '._xmlgen:Namespace',
135+
'escape' : '._xmlgen:escape',
136+
},
137+
138+
'log' : {
139+
# logging API ('producers' and 'consumers' connected via keywords)
140+
'__doc__' : '._log:__doc__',
141+
'_apiwarn' : '._log.warning:_apiwarn',
142+
'Producer' : '._log.log:Producer',
143+
'setconsumer' : '._log.log:setconsumer',
144+
'_setstate' : '._log.log:setstate',
145+
'_getstate' : '._log.log:getstate',
146+
'Path' : '._log.log:Path',
147+
'STDOUT' : '._log.log:STDOUT',
148+
'STDERR' : '._log.log:STDERR',
149+
'Syslog' : '._log.log:Syslog',
150+
},
151+
152+
})
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import py
2+
pydir = py.path.local(py.__file__).dirpath()
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)