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
349b04e9
Kaydet (Commit)
349b04e9
authored
Eki 25, 2013
tarafından
Christian Heimes
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue 19384: Fix test_py_compile for root user, patch by Claudiu Popa.
üst
c4a4b346
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
test_py_compile.py
Lib/test/test_py_compile.py
+3
-0
NEWS
Misc/NEWS
+5
-0
No files found.
Lib/test/test_py_compile.py
Dosyayı görüntüle @
349b04e9
...
@@ -3,6 +3,7 @@ import os
...
@@ -3,6 +3,7 @@ import os
import
py_compile
import
py_compile
import
shutil
import
shutil
import
stat
import
stat
import
sys
import
tempfile
import
tempfile
import
unittest
import
unittest
...
@@ -75,6 +76,8 @@ class PyCompileTests(unittest.TestCase):
...
@@ -75,6 +76,8 @@ class PyCompileTests(unittest.TestCase):
self
.
assertTrue
(
os
.
path
.
exists
(
self
.
pyc_path
))
self
.
assertTrue
(
os
.
path
.
exists
(
self
.
pyc_path
))
self
.
assertFalse
(
os
.
path
.
exists
(
self
.
cache_path
))
self
.
assertFalse
(
os
.
path
.
exists
(
self
.
cache_path
))
@unittest.skipIf
(
hasattr
(
os
,
'geteuid'
)
and
os
.
geteuid
()
==
0
,
'non-root user required'
)
@unittest.skipIf
(
os
.
name
==
'nt'
,
@unittest.skipIf
(
os
.
name
==
'nt'
,
'cannot control directory permissions on Windows'
)
'cannot control directory permissions on Windows'
)
def
test_exceptions_propagate
(
self
):
def
test_exceptions_propagate
(
self
):
...
...
Misc/NEWS
Dosyayı görüntüle @
349b04e9
...
@@ -74,6 +74,11 @@ Library
...
@@ -74,6 +74,11 @@ Library
-
Issue
#
17087
:
Improved
the
repr
for
regular
expression
match
objects
.
-
Issue
#
17087
:
Improved
the
repr
for
regular
expression
match
objects
.
Tests
-----
-
Issue
19384
:
Fix
test_py_compile
for
root
user
,
patch
by
Claudiu
Popa
.
Build
Build
-----
-----
...
...
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