1. 17 2月, 2014 2 次提交
  2. 15 2月, 2014 1 次提交
  3. 12 2月, 2014 3 次提交
  4. 11 2月, 2014 6 次提交
  5. 10 2月, 2014 1 次提交
  6. 07 2月, 2014 1 次提交
  7. 06 2月, 2014 1 次提交
    • M
      Simplify __main__ logic · 2e8f1917
      Matthew Iversen 提交于
      runner.py seemed to exist for the sole function of containing
      a simple function that was called by __main__.py.
      
      I've simply removed that file with its function moved into
      __main__.py itself; no functionality should be expected to change.
      2e8f1917
  8. 05 2月, 2014 2 次提交
  9. 03 2月, 2014 4 次提交
  10. 02 2月, 2014 2 次提交
  11. 30 1月, 2014 2 次提交
  12. 29 1月, 2014 5 次提交
  13. 28 1月, 2014 7 次提交
    • D
      Modify add pip_zip to sys.path method · 39039e02
      Dongweiming 提交于
      39039e02
    • D
      Merge pull request #1509 from dstufft/flake8 · 9efff557
      Donald Stufft 提交于
      Use Flake8 to enforce code style
      9efff557
    • D
      Merge branch 'master' into develop · 2a757485
      Donald Stufft 提交于
      Conflicts:
      	contrib/packager/template.py
      2a757485
    • D
      Merge pull request #1510 from dstufft/use-zip-get-pip · 8575e0c1
      Donald Stufft 提交于
      Use a ZipFile as the get-pip.py script
      8575e0c1
    • D
      Use a ZipFile as the get-pip.py script · 645180e2
      Donald Stufft 提交于
      Previously get-pip.py was a hacky script that included compressed
      base64 encoded pickled files that represented an installed pip. It
      extracted these files into the temporary location and then executed
      that unpacked pip in order to install pip and setuptools from PyPI.
      
      This changes it so that get-pip.py is the bootstrap script and it
      contains inside it a base64 encoded zipped copy of pip. It will
      decode this base64 encoded zip file, write it to a temporary
      location, and then add it to the sys.path. It will then run
      the bootstrap function which will extract cacert.pem from the
      zip file, write the cacert.pem to a temporary location, and
      finally install pip using the copy of pip within the zip
      using the temporary cacert.pem to validate the TLS connection to
      PyPI.
      
      This should represent no change in behavior for users of get-pip.py
      however it should push the trouble of the bulk of the implementation
      onto the Python install instead of trying to do this ourselves.
      
      The one important behavior change for packagers is that this will
      no longer package an *installed* pip, but will instead package the
      version that has been checked out. I believe this is more obvious
      and what a packager would expect to happen anyways.
      645180e2
    • D
      Run flake8 as part of the test suite · b72f44b2
      Donald Stufft 提交于
      b72f44b2
    • D
      Fix the style of the code base to better match pep8 · 2743768b
      Donald Stufft 提交于
      2743768b
  14. 27 1月, 2014 3 次提交