Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
8ddd59e8
Kaydet (Commit)
8ddd59e8
authored
Kas 30, 2013
tarafından
Nick Coghlan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #19728: don't be sensitive to line endings
üst
60f08c83
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
9 deletions
+5
-9
test_venv.py
Lib/test/test_venv.py
+5
-9
No files found.
Lib/test/test_venv.py
Dosyayı görüntüle @
8ddd59e8
...
...
@@ -340,17 +340,13 @@ class EnsurePipTest(BaseTest):
# if we get unexpected results
err
=
err
.
decode
(
"latin-1"
)
# Force to text, prevent decoding errors
self
.
assertEqual
(
err
,
""
)
# Being
real
ly specific regarding the expected behaviour for the
# Being
fair
ly specific regarding the expected behaviour for the
# initial bundling phase in Python 3.4. If the output changes in
# future pip versions, this test can
be relaxed a bit
.
# future pip versions, this test can
likely be relaxed further
.
out
=
out
.
decode
(
"latin-1"
)
# Force to text, prevent decoding errors
expected_output
=
textwrap
.
dedent
(
"""
\
Uninstalling pip:
Successfully uninstalled pip
Uninstalling setuptools:
Successfully uninstalled setuptools
"""
)
self
.
assertEqual
(
out
,
expected_output
)
self
.
assertIn
(
"Successfully uninstalled pip"
,
out
)
self
.
assertIn
(
"Successfully uninstalled setuptools"
,
out
)
# Check pip is now gone from the virtual environment
self
.
assert_pip_not_installed
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment