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
afa358fa
Kaydet (Commit)
afa358fa
authored
Tem 23, 2006
tarafından
Andrew MacIntyre
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Get mailbox module working on OS/2 EMX port.
üst
82247cb7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
4 deletions
+12
-4
mailbox.py
Lib/mailbox.py
+10
-2
test_mailbox.py
Lib/test/test_mailbox.py
+2
-2
No files found.
Lib/mailbox.py
Dosyayı görüntüle @
afa358fa
...
...
@@ -15,6 +15,9 @@ import email.Generator
import
rfc822
import
StringIO
try
:
if
sys
.
platform
==
'os2emx'
:
# OS/2 EMX fcntl() not adequate
raise
ImportError
import
fcntl
except
ImportError
:
fcntl
=
None
...
...
@@ -565,7 +568,8 @@ class _singlefileMailbox(Mailbox):
try
:
os
.
rename
(
new_file
.
name
,
self
.
_path
)
except
OSError
,
e
:
if
e
.
errno
==
errno
.
EEXIST
:
if
e
.
errno
==
errno
.
EEXIST
or
\
(
os
.
name
==
'os2'
and
e
.
errno
==
errno
.
EACCES
):
os
.
remove
(
self
.
_path
)
os
.
rename
(
new_file
.
name
,
self
.
_path
)
else
:
...
...
@@ -1030,6 +1034,9 @@ class MH(Mailbox):
if
hasattr
(
os
,
'link'
):
os
.
link
(
os
.
path
.
join
(
self
.
_path
,
str
(
key
)),
os
.
path
.
join
(
self
.
_path
,
str
(
prev
+
1
)))
if
sys
.
platform
==
'os2emx'
:
# cannot unlink an open file on OS/2
f
.
close
()
os
.
unlink
(
os
.
path
.
join
(
self
.
_path
,
str
(
key
)))
else
:
f
.
close
()
...
...
@@ -1828,7 +1835,8 @@ def _lock_file(f, dotlock=True):
os
.
rename
(
pre_lock
.
name
,
f
.
name
+
'.lock'
)
dotlock_done
=
True
except
OSError
,
e
:
if
e
.
errno
==
errno
.
EEXIST
:
if
e
.
errno
==
errno
.
EEXIST
or
\
(
os
.
name
==
'os2'
and
e
.
errno
==
errno
.
EACCES
):
os
.
remove
(
pre_lock
.
name
)
raise
ExternalClashError
(
'dot lock unavailable:
%
s'
%
f
.
name
)
...
...
Lib/test/test_mailbox.py
Dosyayı görüntüle @
afa358fa
...
...
@@ -461,7 +461,7 @@ class TestMaildir(TestMailbox):
def
setUp
(
self
):
TestMailbox
.
setUp
(
self
)
if
os
.
name
==
'nt'
:
if
os
.
name
in
(
'nt'
,
'os2'
)
:
self
.
_box
.
colon
=
'!'
def
test_add_MM
(
self
):
...
...
@@ -520,7 +520,7 @@ class TestMaildir(TestMailbox):
# Initialize an existing mailbox
self
.
tearDown
()
for
subdir
in
''
,
'tmp'
,
'new'
,
'cur'
:
os
.
mkdir
(
os
.
path
.
join
(
self
.
_path
,
subdir
))
os
.
mkdir
(
os
.
path
.
normpath
(
os
.
path
.
join
(
self
.
_path
,
subdir
)
))
self
.
_box
=
mailbox
.
Maildir
(
self
.
_path
)
self
.
_check_basics
(
factory
=
rfc822
.
Message
)
self
.
_box
=
mailbox
.
Maildir
(
self
.
_path
,
factory
=
None
)
...
...
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