summaryrefslogtreecommitdiff
path: root/pkg_resources/extern
Commit message (Collapse)AuthorAgeFilesLines
* Add appdirs as vendored package. Ref #763.Jason R. Coombs2016-08-271-1/+1
|
* Fix quantity of blank lines after code object, class of function definition.stepshal2016-08-201-0/+2
|
* Shift packaging to use shiny extern.Steve Kowalik2016-01-071-1/+1
|
* Move six to pkg_resources for use there.Jason R. Coombs2016-01-041-1/+1
| | | | | --HG-- branch : feature/issue-229
* Extract variable for extant name. Add comment about the hack.Jason R. Coombs2016-01-021-3/+9
| | | | | --HG-- branch : feature/issue-229
* Add some docstringsJason R. Coombs2016-01-021-0/+13
| | | | | --HG-- branch : feature/issue-229
* Based on experimentation, the canonical module name needs to be in ↵Jason R. Coombs2016-01-021-1/+4
| | | | | | | sys.modules on Python prior to 3.3, but must be omitted on Python 3.3 and later. --HG-- branch : feature/issue-229
* Combine separate VendorImporters into a single one in pkg_resources.externJason R. Coombs2016-01-021-0/+1
| | | | | --HG-- branch : feature/issue-229
* Pop the module off the stack, preventing the 'Version' class from having a ↵Jason R. Coombs2016-01-021-2/+1
| | | | | | | different manifestation in packaging than in pkg_resources. --HG-- branch : feature/issue-229
* Make VendorImporter more genericJason R. Coombs2016-01-021-13/+20
| | | | | --HG-- branch : feature/issue-229
* Create a PEP 302 importer for managing conditional import of vendored ↵Jason R. Coombs2016-01-022-45/+42
| | | | | | | packages from the 'extern' namespace. This technique avoids the use of 'imp' and works even when setuptools is installed as a zipped egg. Ref #229. --HG-- branch : feature/issue-229
* Move extern.packaging into a package to enable package-relative imports to ↵Jason R. Coombs2016-01-011-0/+0
| | | | | | | resolve propertly. Ref #229. --HG-- branch : feature/issue-229
* Use the same technique in pkg_resources, relying on an 'extern' module to ↵Jason R. Coombs2015-12-312-0/+45
resolve the conditional import. --HG-- branch : feature/issue-229