├── .gitignore ├── .travis.yml ├── CHANGES.rst ├── CONTRIBUTORS.txt ├── COPYRIGHT.txt ├── LICENSE.txt ├── README.rst ├── TODO.txt ├── docs ├── Makefile ├── _static │ ├── logo_hi.gif │ └── profile_browser.png ├── conf.py └── index.rst ├── repoze ├── __init__.py └── profile │ ├── __init__.py │ ├── compat.py │ ├── decorator.py │ ├── profiler.html │ ├── profiler.py │ └── tests.py ├── setup.cfg ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repoze/repoze.profile/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repoze/repoze.profile/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repoze/repoze.profile/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repoze/repoze.profile/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repoze/repoze.profile/HEAD/COPYRIGHT.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repoze/repoze.profile/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repoze/repoze.profile/HEAD/README.rst -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repoze/repoze.profile/HEAD/TODO.txt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repoze/repoze.profile/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/logo_hi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repoze/repoze.profile/HEAD/docs/_static/logo_hi.gif -------------------------------------------------------------------------------- /docs/_static/profile_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repoze/repoze.profile/HEAD/docs/_static/profile_browser.png -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repoze/repoze.profile/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repoze/repoze.profile/HEAD/docs/index.rst -------------------------------------------------------------------------------- /repoze/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repoze/repoze.profile/HEAD/repoze/__init__.py -------------------------------------------------------------------------------- /repoze/profile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repoze/repoze.profile/HEAD/repoze/profile/__init__.py -------------------------------------------------------------------------------- /repoze/profile/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repoze/repoze.profile/HEAD/repoze/profile/compat.py -------------------------------------------------------------------------------- /repoze/profile/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repoze/repoze.profile/HEAD/repoze/profile/decorator.py -------------------------------------------------------------------------------- /repoze/profile/profiler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repoze/repoze.profile/HEAD/repoze/profile/profiler.html -------------------------------------------------------------------------------- /repoze/profile/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repoze/repoze.profile/HEAD/repoze/profile/profiler.py -------------------------------------------------------------------------------- /repoze/profile/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repoze/repoze.profile/HEAD/repoze/profile/tests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repoze/repoze.profile/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repoze/repoze.profile/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/repoze/repoze.profile/HEAD/tox.ini --------------------------------------------------------------------------------