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
40b2cfb3
Kaydet (Commit)
40b2cfb3
authored
Ock 02, 1995
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
* Lib/mhlib.py: added movemessage(), copymessage(), added copy
fallback for refilemessages(), and updated the docs
üst
76be6eda
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
81 additions
and
8 deletions
+81
-8
mhlib.py
Lib/mhlib.py
+81
-8
No files found.
Lib/mhlib.py
Dosyayı görüntüle @
40b2cfb3
...
...
@@ -31,10 +31,17 @@
# list = f.listmessages() # list of messages in folder (as numbers)
# n = f.getcurrent() # get current message
# f.setcurrent(n) # set current message
# n = f.getlast() # get last message (0 if no messagse)
# f.setlast(n) # set last message (internal use only)
#
# dict = f.getsequences() # dictionary of sequences in folder {name: list}
# f.putsequences(dict) # write sequences back to folder
#
# f.removemessages(list) # remove messages in list from folder
# f.refilemessages(list, tofolder) # move messages in list to other folder
# f.movemessage(n, tofolder, ton) # move one message to a given destination
# f.copymessage(n, tofolder, ton) # copy one message to a given destination
#
# m = f.openmessage(n) # new open message object (costs a file descriptor)
# m is a derived class of mimetools.Message(rfc822.Message), with:
# s = m.getheadertext() # text of message's headers
...
...
@@ -43,11 +50,10 @@
# s = m.getbodytext(0) # text of message's body, not decoded
#
# XXX To do, functionality:
# - remove, refile messages
# - annotate messages
# - create, send messages
#
# XXX To do, orga
a
nization:
# XXX To do, organization:
# - move IntSet to separate file
# - move most Message functionality to module mimetools
...
...
@@ -68,6 +74,7 @@ import regex
import
string
import
mimetools
import
multifile
import
shutil
# Exported constants
...
...
@@ -363,12 +370,20 @@ class Folder:
topath
=
tofolder
.
getmessagefilename
(
ton
)
try
:
os
.
rename
(
path
,
topath
)
# XXX What if it's on a different filesystem?
except
os
.
error
,
msg
:
errors
.
append
(
msg
)
else
:
tofolder
.
setlast
(
ton
)
refiled
.
append
(
n
)
except
os
.
error
:
# Try copying
try
:
shutil
.
copy2
(
path
,
topath
)
os
.
unlink
(
path
)
except
(
IOError
,
os
.
error
),
msg
:
errors
.
append
(
msg
)
try
:
os
.
unlink
(
topath
)
except
os
.
error
:
pass
continue
tofolder
.
setlast
(
ton
)
refiled
.
append
(
n
)
if
refiled
:
self
.
removefromallsequences
(
refiled
)
if
errors
:
...
...
@@ -377,6 +392,64 @@ class Folder:
else
:
raise
os
.
error
,
(
'multiple errors:'
,
errors
)
# Move one message over a specific destination message,
# which may or may not already exist.
def
movemessage
(
self
,
n
,
tofolder
,
ton
):
path
=
self
.
getmessagefilename
(
n
)
# Open it to check that it exists
f
=
open
(
path
)
f
.
close
()
del
f
topath
=
tofolder
.
getmessagefilename
(
ton
)
backuptopath
=
tofolder
.
getmessagefilename
(
',
%
d'
%
ton
)
try
:
os
.
rename
(
topath
,
backuptopath
)
except
os
.
error
:
pass
try
:
os
.
rename
(
path
,
topath
)
except
os
.
error
:
# Try copying
ok
=
0
try
:
tofolder
.
setlast
(
None
)
shutil
.
copy2
(
path
,
topath
)
ok
=
1
finally
:
if
not
ok
:
try
:
os
.
unlink
(
topath
)
except
os
.
error
:
pass
os
.
unlink
(
path
)
self
.
removefromallsequences
([
n
])
# Copy one message over a specific destination message,
# which may or may not already exist.
def
copymessage
(
self
,
n
,
tofolder
,
ton
):
path
=
self
.
getmessagefilename
(
n
)
# Open it to check that it exists
f
=
open
(
path
)
f
.
close
()
del
f
topath
=
tofolder
.
getmessagefilename
(
ton
)
backuptopath
=
tofolder
.
getmessagefilename
(
',
%
d'
%
ton
)
try
:
os
.
rename
(
topath
,
backuptopath
)
except
os
.
error
:
pass
ok
=
0
try
:
tofolder
.
setlast
(
None
)
shutil
.
copy2
(
path
,
topath
)
ok
=
1
finally
:
if
not
ok
:
try
:
os
.
unlink
(
topath
)
except
os
.
error
:
pass
# Remove one or more messages from all sequeuces (including last)
def
removefromallsequences
(
self
,
list
):
if
hasattr
(
self
,
'last'
)
and
self
.
last
in
list
:
...
...
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