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
3d785e2c
Kaydet (Commit)
3d785e2c
authored
Ock 26, 2008
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Consistently use tempfile.tempdir for the db_home directory.
üst
7f47d93f
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
5 deletions
+8
-5
test_associate.py
Lib/bsddb/test/test_associate.py
+1
-1
test_compare.py
Lib/bsddb/test/test_compare.py
+2
-1
test_cursor_pget_bug.py
Lib/bsddb/test/test_cursor_pget_bug.py
+2
-1
test_pickle.py
Lib/bsddb/test/test_pickle.py
+2
-1
test_sequence.py
Lib/bsddb/test/test_sequence.py
+1
-1
No files found.
Lib/bsddb/test/test_associate.py
Dosyayı görüntüle @
3d785e2c
...
...
@@ -151,7 +151,7 @@ class AssociateTestCase(unittest.TestCase):
def
setUp
(
self
):
self
.
filename
=
self
.
__class__
.
__name__
+
'.db'
homeDir
=
os
.
path
.
join
(
os
.
path
.
dirname
(
sys
.
argv
[
0
]
),
'db_home'
)
homeDir
=
os
.
path
.
join
(
tempfile
.
gettempdir
(
),
'db_home'
)
self
.
homeDir
=
homeDir
try
:
os
.
mkdir
(
homeDir
)
...
...
Lib/bsddb/test/test_compare.py
Dosyayı görüntüle @
3d785e2c
...
...
@@ -4,6 +4,7 @@ TestCases for python DB Btree key comparison function.
import
sys
,
os
,
re
import
test_all
import
tempfile
from
cStringIO
import
StringIO
import
unittest
...
...
@@ -51,7 +52,7 @@ class AbstractBtreeKeyCompareTestCase (unittest.TestCase):
def
setUp
(
self
):
self
.
filename
=
self
.
__class__
.
__name__
+
'.db'
homeDir
=
os
.
path
.
join
(
os
.
path
.
dirname
(
sys
.
argv
[
0
]
),
'db_home'
)
homeDir
=
os
.
path
.
join
(
tempfile
.
gettempdir
(
),
'db_home'
)
self
.
homeDir
=
homeDir
try
:
os
.
mkdir
(
homeDir
)
...
...
Lib/bsddb/test/test_cursor_pget_bug.py
Dosyayı görüntüle @
3d785e2c
import
unittest
import
tempfile
import
sys
,
os
,
glob
try
:
...
...
@@ -16,7 +17,7 @@ class pget_bugTestCase(unittest.TestCase):
db_name
=
'test-cursor_pget.db'
def
setUp
(
self
):
self
.
homeDir
=
os
.
path
.
join
(
os
.
path
.
dirname
(
sys
.
argv
[
0
]
),
'db_home'
)
self
.
homeDir
=
os
.
path
.
join
(
tempfile
.
gettempdir
(
),
'db_home'
)
try
:
os
.
mkdir
(
self
.
homeDir
)
except
os
.
error
:
...
...
Lib/bsddb/test/test_pickle.py
Dosyayı görüntüle @
3d785e2c
...
...
@@ -6,6 +6,7 @@ try:
except
ImportError
:
cPickle
=
None
import
unittest
import
tempfile
import
glob
try
:
...
...
@@ -24,7 +25,7 @@ class pickleTestCase(unittest.TestCase):
db_name
=
'test-dbobj.db'
def
setUp
(
self
):
homeDir
=
os
.
path
.
join
(
os
.
path
.
dirname
(
sys
.
argv
[
0
]
),
'db_home'
)
homeDir
=
os
.
path
.
join
(
tempfile
.
gettempdir
(
),
'db_home'
)
self
.
homeDir
=
homeDir
try
:
os
.
mkdir
(
homeDir
)
except
os
.
error
:
pass
...
...
Lib/bsddb/test/test_sequence.py
Dosyayı görüntüle @
3d785e2c
...
...
@@ -16,7 +16,7 @@ from test_all import verbose
class
DBSequenceTest
(
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
int_32_max
=
0x100000000
self
.
homeDir
=
os
.
path
.
join
(
os
.
path
.
dirname
(
sys
.
argv
[
0
]
),
'db_home'
)
self
.
homeDir
=
os
.
path
.
join
(
tempfile
.
gettempdir
(
),
'db_home'
)
try
:
os
.
mkdir
(
self
.
homeDir
)
except
os
.
error
:
...
...
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