- 02 Jun, 2014 2 commits
-
-
Matthew Iversen authored
--HG-- extra : source : f78ffe97964c6becbf42e946bf6504e8dc09f13b
-
Matthew Iversen authored
--HG-- extra : source : 0d6a065483104cc9781a3ff72c168f059ec11036
-
- 15 Jun, 2014 4 commits
-
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Monty Taylor authored
The rename of the script template files to be .tmpl put them into the realm of package data, rather than python files that would be bundled automatically. Include them specifically in package data so that they'll actually be installed.
-
- 14 Jun, 2014 17 commits
-
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
--HG-- rename : setuptools/script template (dev).py => setuptools/script (dev).tmpl rename : setuptools/script template.py => setuptools/script.tmpl
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
Now that 2to3 is no longer run on the codebase, it's safe for the templates to be syntactically incorrect (prior to substitution).
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
- 02 Jun, 2014 4 commits
-
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Matthew Iversen authored
https://bitbucket.org/pypa/setuptools/issue/213/regression-setuptools-37-installation --HG-- extra : source : 182f68beacf5e436609fb7d1064a18279cbbd24a
-
- 01 Jun, 2014 8 commits
-
-
Jason R. Coombs authored
--HG-- extra : rebase_source : a70141cd6472cd8e4024be4037bfd89e4adcb396
-
Jason R. Coombs authored
--HG-- extra : rebase_source : db1f9496cdda75a9467fcfb867b82108773b0443
-
Jason R. Coombs authored
Change the project URL to BitBucket rather than PyPI
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
- 28 May, 2014 3 commits
-
-
Jason R. Coombs authored
-
Jason R. Coombs authored
--HG-- extra : amend_source : e41a2567b4174ef2eff09f3aa3f2a7faf214e054
-
Jurko Gospodnetić authored
ContextualZipFile tried to be smart and have its __new__ method return zipfile.ZipFile instances on Python versions supporting the zipfile.ZipFile context manager interface (i.e. only on Python [2.7, 3.0> & 3.2+) while on others it would return an actual ContextualZipFile instance. The new implementation seems much simpler and avoids a DeprecationWarning on Python [3.0, 3.2>. There zipFile.ZipFile's __new__ method implementation is actually inherited from object, and calling object.__new__ with extra parameters has been deprecated since Python 2.6 (it has even been converted to an error since Python 3.3). Notes on why there were no related problems in other Python versions: * Python versions prior to 2.5 were not affected because they did not yet deprecate passing extra parameters to object.__new__. * Python version 2.6 was not affected because there zipfile.ZipFile was implemented as an old-style class and therefore did not get its __new__ method called in the first place. * Python [2.7, 3.0> & 3.2+ - explained above. --HG-- extra : source : 9388cc525f1919672fb916b0e62f80ca581072b7
-
- 27 May, 2014 2 commits
-
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-