File tree 2 files changed +36
-0
lines changed 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env python
2
2
3
+ # Hi There!
4
+ # You may be wondering what this giant blob of binary data here is, you might
5
+ # even be worried that we're up to something nefarious (good for you for being
6
+ # paranoid!). It is a base64 encoded bz2 stream that was stored using the
7
+ # pickle module.
8
+ #
9
+ # Pip is a thing that installs packages, pip itself is a package that someone
10
+ # might want to install, especially if they're looking to run this get-pip.py
11
+ # script. Pip has a lot of code to deal with the security of installing
12
+ # packages, various edge cases on various platforms, and other such sort of
13
+ # "tribal knowledge" that has been encoded in it's code base. Because of this
14
+ # we basically include an entire copy of pip inside this blob. We do this
15
+ # because the alternatives are attempt to implement a "minipip" that probably
16
+ # doesn't do things correctly and has weird edge cases, or compress pip itself
17
+ # down into a single file.
18
+ #
19
+ # If you're wondering how this is created, the secret is
20
+ # "contrib/build-installer" from the pip repository.
3
21
sources = """
4
22
QlpoOTFBWSZTWYVCtNgG3an//////////////////f////JFQAJgREZKBERAEJBEQABMZBnu8QeH
5
23
Pr6GZh9HQAAFAUHKEA1rNt6y7UUKyNBoGgUFNJtrFVFAKaAGhoZmO6gBj3AOg+UgpFQpVBAnXJ99
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env python
2
2
3
+ # Hi There!
4
+ # You may be wondering what this giant blob of binary data here is, you might
5
+ # even be worried that we're up to something nefarious (good for you for being
6
+ # paranoid!). It is a base64 encoded bz2 stream that was stored using the
7
+ # pickle module.
8
+ #
9
+ # Pip is a thing that installs packages, pip itself is a package that someone
10
+ # might want to install, especially if they're looking to run this get-pip.py
11
+ # script. Pip has a lot of code to deal with the security of installing
12
+ # packages, various edge cases on various platforms, and other such sort of
13
+ # "tribal knowledge" that has been encoded in it's code base. Because of this
14
+ # we basically include an entire copy of pip inside this blob. We do this
15
+ # because the alternatives are attempt to implement a "minipip" that probably
16
+ # doesn't do things correctly and has weird edge cases, or compress pip itself
17
+ # down into a single file.
18
+ #
19
+ # If you're wondering how this is created, the secret is
20
+ # "contrib/build-installer" from the pip repository.
3
21
sources = """
4
22
@SOURCES@"""
5
23
You can’t perform that action at this time.
0 commit comments