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
d5963e61
Kaydet (Commit)
d5963e61
authored
Eki 01, 2015
tarafından
Vinay Sajip
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Fixes #25097: Merged fi from 3.4.
üst
2934fd66
223349cf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
9 deletions
+11
-9
test_logging.py
Lib/test/test_logging.py
+11
-9
No files found.
Lib/test/test_logging.py
Dosyayı görüntüle @
d5963e61
...
...
@@ -58,14 +58,10 @@ try:
except
ImportError
:
threading
=
None
try
:
import
win32evtlog
import
win32evtlog
,
win32evtlogutil
,
pywintypes
except
ImportError
:
win32evtlog
=
None
try
:
import
win32evtlogutil
except
ImportError
:
win32evtlogutil
=
None
win32evtlog
=
None
win32evtlog
=
win32evtlogutil
=
pywintypes
=
None
try
:
import
zlib
except
ImportError
:
...
...
@@ -4128,13 +4124,19 @@ for when, exp in (('S', 1),
setattr
(
TimedRotatingFileHandlerTest
,
"test_compute_rollover_
%
s"
%
when
,
test_compute_rollover
)
@unittest.skipUnless
(
win32evtlog
,
'win32evtlog/win32evtlogutil required for this test.'
)
@unittest.skipUnless
(
win32evtlog
,
'win32evtlog/win32evtlogutil
/pywintypes
required for this test.'
)
class
NTEventLogHandlerTest
(
BaseTest
):
def
test_basic
(
self
):
logtype
=
'Application'
elh
=
win32evtlog
.
OpenEventLog
(
None
,
logtype
)
num_recs
=
win32evtlog
.
GetNumberOfEventLogRecords
(
elh
)
h
=
logging
.
handlers
.
NTEventLogHandler
(
'test_logging'
)
try
:
h
=
logging
.
handlers
.
NTEventLogHandler
(
'test_logging'
)
except
pywintypes
.
error
as
e
:
if
e
[
0
]
==
5
:
# access denied
raise
unittest
.
SkipTest
(
'Insufficient privileges to run test'
)
r
=
logging
.
makeLogRecord
({
'msg'
:
'Test Log Message'
})
h
.
handle
(
r
)
h
.
close
()
...
...
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