1. 14 Jun, 2014 17 commits
  2. 02 Jun, 2014 4 commits
  3. 01 Jun, 2014 8 commits
  4. 28 May, 2014 3 commits
    • Jason R. Coombs's avatar
    • Jason R. Coombs's avatar
      Suppress arguments to __new__. ZipFile doesn't want them, and object deprecates them. · eba9c893
      Jason R. Coombs authored
      --HG--
      extra : amend_source : e41a2567b4174ef2eff09f3aa3f2a7faf214e054
      eba9c893
    • Jurko Gospodnetić's avatar
      simplify ContextualZipFile implementation and avoid DeprecationWarnings · e234ee81
      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
      e234ee81
  5. 27 May, 2014 2 commits
  6. 25 May, 2014 1 commit
    • Nick Coghlan's avatar
      Change the project URL to BitBucket rather than PyPI · d1034e6d
      Nick Coghlan authored
      Currently, the project metadata on PyPI doesn't provide an easy way to navigate to the BitBucket repo. This change replaces the current self-link back to PyPI with the appropriate link to BitBucket.
      
      --HG--
      branch : ncoghlan/setuppy-edited-online-with-bitbucket-1401023748153
      d1034e6d
  7. 23 May, 2014 1 commit
  8. 22 May, 2014 1 commit
  9. 18 May, 2014 3 commits