Skip to content

Commit 65e08c0

Browse files
CPython Devleopersyouknowone
authored andcommitted
Update ensurepip from 3.14.2
1 parent 33689c1 commit 65e08c0

4 files changed

Lines changed: 3 additions & 4 deletions

File tree

Lib/ensurepip/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
__all__ = ["version", "bootstrap"]
13-
_PIP_VERSION = "25.2"
13+
_PIP_VERSION = "25.3"
1414

1515
# Directory of system wheel packages. Some Linux distribution packaging
1616
# policies recommend against bundling dependencies. For example, Fedora
@@ -205,7 +205,7 @@ def _uninstall_helper(*, verbosity=0):
205205

206206
def _main(argv=None):
207207
import argparse
208-
parser = argparse.ArgumentParser(prog="python -m ensurepip")
208+
parser = argparse.ArgumentParser(color=True)
209209
parser.add_argument(
210210
"--version",
211211
action="version",
1.68 MB
Binary file not shown.

Lib/ensurepip/_uninstall.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
def _main(argv=None):
9-
parser = argparse.ArgumentParser(prog="python -m ensurepip._uninstall")
9+
parser = argparse.ArgumentParser()
1010
parser.add_argument(
1111
"--version",
1212
action="version",

Lib/test/test_ensurepip.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
import test.support
77
import unittest
88
import unittest.mock
9-
from importlib.resources.abc import Traversable
109
from pathlib import Path
1110

1211
import ensurepip

0 commit comments

Comments
 (0)