| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Closing develop branchdevelop | Jason R. Coombs | 2014-06-28 | 0 | -0/+0 |
| | | |||||
| * | Moved the additions to the change file up, after rebasing. | Philip Thiem | 2014-05-31 | 1 | -9/+9 |
| | | |||||
| * | PY26 doesn't have assertIn | Philip Thiem | 2014-05-17 | 1 | -2/+2 |
| | | |||||
| * | Prune paths file list starting with (RCS|CVS|.svn) as well as path with | Philip Thiem | 2014-04-23 | 2 | -1/+4 |
| | | | | | such sub directories. | ||||
| * | Add Regression Tests for svn tagging. | Philip Thiem | 2014-04-23 | 1 | -0/+37 |
| | | |||||
| * | Fixes Issue #185: Svn not working on new style svn metadata. | Philip Thiem | 2014-04-16 | 2 | -1/+8 |
| | | |||||
| * | Applied Patch from cazabon to handle svn tag revisions | Philip Thiem | 2014-04-16 | 1 | -3/+4 |
| | | |||||
| * | Development Heads. | Philip Thiem | 2014-05-31 | 0 | -0/+0 |
| | | |||||
| * | Merge (preferring custom constructor for selecting the canonical ↵3.7 | Jason R. Coombs | 2014-05-28 | 2 | -20/+26 |
| |\ | | | | | | | implementation on modern Pythons | ||||
| | * | Suppress arguments to __new__. ZipFile doesn't want them, and object ↵ | Jason R. Coombs | 2014-05-28 | 2 | -2/+2 |
| | | | | | | | | | deprecates them. | ||||
| * | | simplify ContextualZipFile implementation and avoid DeprecationWarnings | Jurko Gospodneti? | 2014-05-28 | 2 | -26/+20 |
| |/ | | | | | | | | | | | | | | | | | | | | | 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. | ||||
| * | Added tag 3.7b1 for changeset 292dfca15d33 | Jason R. Coombs | 2014-05-27 | 0 | -0/+0 |
| | | |||||
| * | Update changelog3.7b1 | Jason R. Coombs | 2014-05-27 | 1 | -0/+6 |
| | | |||||
| * | Normalize whitespace | Jason R. Coombs | 2014-05-23 | 1 | -17/+17 |
| | | |||||
| * | Include the build launcher script in setuptools sdist. This helps address ↵ | Jason R. Coombs | 2014-05-21 | 1 | -0/+1 |
| | | | | | the requirement that all sources be included. | ||||
| * | Use context manager | Jason R. Coombs | 2014-05-17 | 1 | -25/+22 |
| | | |||||
| * | Patch globals in a function. This technique bypasses the linter warnings ↵ | Jason R. Coombs | 2014-05-17 | 1 | -5/+16 |
| | | | | | about the names not being present, and allows for better documentation. | ||||
| * | Fix NameError (is this code ever used?). | Jason R. Coombs | 2014-05-17 | 1 | -1/+2 |
| | | |||||
| * | Modernize syntax | Jason R. Coombs | 2014-05-17 | 1 | -59/+16 |
| | | |||||
| * | Use context manager for brevity | Jason R. Coombs | 2014-05-17 | 1 | -4/+1 |
| | | |||||
| * | Use ContextualZipFile and contextlib.closing for archiveutil | Jason R. Coombs | 2014-05-17 | 1 | -8/+4 |
| | | |||||
| * | Clean up whitespace | Jason R. Coombs | 2014-05-17 | 1 | -47/+7 |
| | | |||||
| * | Update ContextualZipFile to use a single constructor | Jason R. Coombs | 2014-05-17 | 2 | -12/+10 |
| | | |||||
| * | Use context managers in pkg_resources | Jason R. Coombs | 2014-05-17 | 1 | -10/+5 |
| | | |||||
| * | Use ContextualZipFile for context manager support | Jason R. Coombs | 2014-05-17 | 1 | -5/+22 |
| | | |||||
| * | Replace get_zip_class with a specialized constructor. | Jason R. Coombs | 2014-05-17 | 1 | -9/+17 |
| | | |||||
| * | Use context manager | Jason R. Coombs | 2014-05-17 | 1 | -4/+1 |
| | | |||||
| * | Refactor test | Jason R. Coombs | 2014-05-17 | 1 | -2/+2 |
| | | |||||
| * | Actually call close on exit | Jason R. Coombs | 2014-05-17 | 1 | -1/+1 |
| | | |||||
| * | Use iterables for getting best downloader | Jason R. Coombs | 2014-05-17 | 1 | -6/+4 |
| | | |||||
| * | Move import to the top | Jason R. Coombs | 2014-05-17 | 1 | -4/+5 |
| | | |||||
| * | Use context managers to reliably close files | Jason R. Coombs | 2014-05-17 | 1 | -22/+10 |
| | | |||||
| * | Restore Python 2 compatibility. | Jason R. Coombs | 2014-05-17 | 1 | -1/+1 |
| | | |||||
| * | Update requires.txt to match new, predictable order. | Jason R. Coombs | 2014-05-17 | 1 | -2/+1 |
| | | |||||
| * | Use StringIO to write out requirements. Use more common convention of adding ↵ | Jason R. Coombs | 2014-05-17 | 1 | -4/+12 |
| | | | | | newline to each line of the file, not just intervening lines. | ||||
| * | Write requirements in a deterministic order. | Jason R. Coombs | 2014-05-17 | 1 | -1/+2 |
| | | |||||
| * | Extract variable | Jason R. Coombs | 2014-05-17 | 1 | -1/+2 |
| | | |||||
| * | Add whitespace for readability. | Jason R. Coombs | 2014-05-17 | 1 | -1/+1 |
| | | |||||
| * | Must create files for tests, else they are remoed from manifests | Jason R. Coombs | 2014-05-17 | 1 | -0/+3 |
| | | |||||
| * | Must create files for tests, else they are remoed from manifests | Philip Thiem | 2014-05-17 | 1 | -6/+9 |
| | | |||||
| * | est_manifest_is_written_with_utf8_encoding should use the filelist's append, ↵ | Philip Thiem | 2014-05-17 | 1 | -1/+1 |
| | | | | | NOT filelist.files.append | ||||
| * | Remove unused import | Jason R. Coombs | 2014-05-17 | 1 | -1/+0 |
| | | |||||
| * | Convert quiet to a context manager, so its comment is no longer complaining ↵ | Jason R. Coombs | 2014-05-17 | 1 | -45/+16 |
| | | | | | and to simplify the code. | ||||
| * | Use PY3 and PY2 throughout | Jason R. Coombs | 2014-05-17 | 10 | -43/+44 |
| | | |||||
| * | Add a PY2 also. | Jason R. Coombs | 2014-05-17 | 1 | -1/+2 |
| | | |||||
| * | Compute PY3 directly and switch on that for clarity. | Jason R. Coombs | 2014-05-17 | 1 | -4/+3 |
| | | |||||
| * | with_statement is available naturally in Python 2.6 | Jason R. Coombs | 2014-05-17 | 2 | -7/+6 |
| | | |||||
| * | Merge 4 out of 5 commits from Philip Thiem's unicode_try_2. Ref #193 | Jason R. Coombs | 2014-05-17 | 3 | -11/+74 |
| |\ | |||||
| | * | In corporate the old unicode with the spirit of what the FileList updating. | Philip Thiem | 2014-05-17 | 1 | -6/+25 |
| | | | |||||
| | * | Starting a unicode_utils module. | Philip Thiem | 2014-05-17 | 1 | -0/+41 |
| | | | |||||
