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
9fade768
Kaydet (Commit)
9fade768
authored
Ara 24, 2012
tarafından
Mark Dickinson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #13863: fix incorrect .pyc timestamps on Windows / NTFS (apparently due to buggy fstat)
üst
d8590ff2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
91 additions
and
6 deletions
+91
-6
test_import.py
Lib/test/test_import.py
+41
-0
NEWS
Misc/NEWS
+4
-0
import.c
Python/import.c
+46
-6
No files found.
Lib/test/test_import.py
Dosyayı görüntüle @
9fade768
...
@@ -5,6 +5,7 @@ import os
...
@@ -5,6 +5,7 @@ import os
import
py_compile
import
py_compile
import
random
import
random
import
stat
import
stat
import
struct
import
sys
import
sys
import
unittest
import
unittest
import
textwrap
import
textwrap
...
@@ -350,6 +351,46 @@ class ImportTests(unittest.TestCase):
...
@@ -350,6 +351,46 @@ class ImportTests(unittest.TestCase):
del
sys
.
path
[
0
]
del
sys
.
path
[
0
]
remove_files
(
TESTFN
)
remove_files
(
TESTFN
)
def
test_pyc_mtime
(
self
):
# Test for issue #13863: .pyc timestamp sometimes incorrect on Windows.
sys
.
path
.
insert
(
0
,
os
.
curdir
)
try
:
# Jan 1, 2012; Jul 1, 2012.
mtimes
=
1325376000
,
1341100800
# Different names to avoid running into import caching.
tails
=
"spam"
,
"eggs"
for
mtime
,
tail
in
zip
(
mtimes
,
tails
):
module
=
TESTFN
+
tail
source
=
module
+
".py"
compiled
=
source
+
(
'c'
if
__debug__
else
'o'
)
# Create a new Python file with the given mtime.
with
open
(
source
,
'w'
)
as
f
:
f
.
write
(
"# Just testing
\n
x=1, 2, 3
\n
"
)
os
.
utime
(
source
,
(
mtime
,
mtime
))
# Generate the .pyc/o file; if it couldn't be created
# for some reason, skip the test.
m
=
__import__
(
module
)
if
not
os
.
path
.
exists
(
compiled
):
unlink
(
source
)
self
.
skipTest
(
"Couldn't create .pyc/.pyo file."
)
# Actual modification time of .py file.
mtime1
=
int
(
os
.
stat
(
source
)
.
st_mtime
)
&
0xffffffff
# mtime that was encoded in the .pyc file.
with
open
(
compiled
,
'rb'
)
as
f
:
mtime2
=
struct
.
unpack
(
'<L'
,
f
.
read
(
8
)[
4
:])[
0
]
unlink
(
compiled
)
unlink
(
source
)
self
.
assertEqual
(
mtime1
,
mtime2
)
finally
:
sys
.
path
.
pop
(
0
)
class
PycRewritingTests
(
unittest
.
TestCase
):
class
PycRewritingTests
(
unittest
.
TestCase
):
# Test that the `co_filename` attribute on code objects always points
# Test that the `co_filename` attribute on code objects always points
...
...
Misc/NEWS
Dosyayı görüntüle @
9fade768
...
@@ -9,6 +9,10 @@ What's New in Python 2.7.4
...
@@ -9,6 +9,10 @@ What's New in Python 2.7.4
Core and Builtins
Core and Builtins
-----------------
-----------------
- Issue #13863: Work around buggy 'fstat' implementation on Windows / NTFS that
lead to incorrect timestamps (off by one hour) being stored in .pyc files on
some systems.
- Issue #16602: When a weakref's target was part of a long deallocation
- Issue #16602: When a weakref's target was part of a long deallocation
chain, the object could remain reachable through its weakref even though
chain, the object could remain reachable through its weakref even though
its refcount had dropped to zero.
its refcount had dropped to zero.
...
...
Python/import.c
Dosyayı görüntüle @
9fade768
...
@@ -904,10 +904,9 @@ open_exclusive(char *filename, mode_t mode)
...
@@ -904,10 +904,9 @@ open_exclusive(char *filename, mode_t mode)
remove the file. */
remove the file. */
static
void
static
void
write_compiled_module
(
PyCodeObject
*
co
,
char
*
cpathname
,
struct
stat
*
srcstat
)
write_compiled_module
(
PyCodeObject
*
co
,
char
*
cpathname
,
struct
stat
*
srcstat
,
time_t
mtime
)
{
{
FILE
*
fp
;
FILE
*
fp
;
time_t
mtime
=
srcstat
->
st_mtime
;
#ifdef MS_WINDOWS
/* since Windows uses different permissions */
#ifdef MS_WINDOWS
/* since Windows uses different permissions */
mode_t
mode
=
srcstat
->
st_mode
&
~
S_IEXEC
;
mode_t
mode
=
srcstat
->
st_mode
&
~
S_IEXEC
;
/* Issue #6074: We ensure user write access, so we can delete it later
/* Issue #6074: We ensure user write access, so we can delete it later
...
@@ -993,6 +992,38 @@ update_compiled_module(PyCodeObject *co, char *pathname)
...
@@ -993,6 +992,38 @@ update_compiled_module(PyCodeObject *co, char *pathname)
return
1
;
return
1
;
}
}
#ifdef MS_WINDOWS
/* Seconds between 1.1.1601 and 1.1.1970 */
static
__int64
secs_between_epochs
=
11644473600
;
/* Get mtime from file pointer. */
static
time_t
win32_mtime
(
FILE
*
fp
,
char
*
pathname
)
{
__int64
filetime
;
HANDLE
fh
;
BY_HANDLE_FILE_INFORMATION
file_information
;
fh
=
(
HANDLE
)
_get_osfhandle
(
fileno
(
fp
));
if
(
fh
==
INVALID_HANDLE_VALUE
||
!
GetFileInformationByHandle
(
fh
,
&
file_information
))
{
PyErr_Format
(
PyExc_RuntimeError
,
"unable to get file status from '%s'"
,
pathname
);
return
-
1
;
}
/* filetime represents the number of 100ns intervals since
1.1.1601 (UTC). Convert to seconds since 1.1.1970 (UTC). */
filetime
=
(
__int64
)
file_information
.
ftLastWriteTime
.
dwHighDateTime
<<
32
|
file_information
.
ftLastWriteTime
.
dwLowDateTime
;
return
filetime
/
10000000
-
secs_between_epochs
;
}
#endif
/* #ifdef MS_WINDOWS */
/* Load a source module from a given file and return its module
/* Load a source module from a given file and return its module
object WITH INCREMENTED REFERENCE COUNT. If there's a matching
object WITH INCREMENTED REFERENCE COUNT. If there's a matching
byte-compiled file, use that instead. */
byte-compiled file, use that instead. */
...
@@ -1006,6 +1037,7 @@ load_source_module(char *name, char *pathname, FILE *fp)
...
@@ -1006,6 +1037,7 @@ load_source_module(char *name, char *pathname, FILE *fp)
char
*
cpathname
;
char
*
cpathname
;
PyCodeObject
*
co
=
NULL
;
PyCodeObject
*
co
=
NULL
;
PyObject
*
m
;
PyObject
*
m
;
time_t
mtime
;
if
(
fstat
(
fileno
(
fp
),
&
st
)
!=
0
)
{
if
(
fstat
(
fileno
(
fp
),
&
st
)
!=
0
)
{
PyErr_Format
(
PyExc_RuntimeError
,
PyErr_Format
(
PyExc_RuntimeError
,
...
@@ -1013,13 +1045,21 @@ load_source_module(char *name, char *pathname, FILE *fp)
...
@@ -1013,13 +1045,21 @@ load_source_module(char *name, char *pathname, FILE *fp)
pathname
);
pathname
);
return
NULL
;
return
NULL
;
}
}
if
(
sizeof
st
.
st_mtime
>
4
)
{
#ifdef MS_WINDOWS
mtime
=
win32_mtime
(
fp
,
pathname
);
if
(
mtime
==
(
time_t
)
-
1
&&
PyErr_Occurred
())
return
NULL
;
#else
mtime
=
st
.
st_mtime
;
#endif
if
(
sizeof
mtime
>
4
)
{
/* Python's .pyc timestamp handling presumes that the timestamp fits
/* Python's .pyc timestamp handling presumes that the timestamp fits
in 4 bytes. Since the code only does an equality comparison,
in 4 bytes. Since the code only does an equality comparison,
ordering is not important and we can safely ignore the higher bits
ordering is not important and we can safely ignore the higher bits
(collisions are extremely unlikely).
(collisions are extremely unlikely).
*/
*/
st
.
st_
mtime
&=
0xFFFFFFFF
;
mtime
&=
0xFFFFFFFF
;
}
}
buf
=
PyMem_MALLOC
(
MAXPATHLEN
+
1
);
buf
=
PyMem_MALLOC
(
MAXPATHLEN
+
1
);
if
(
buf
==
NULL
)
{
if
(
buf
==
NULL
)
{
...
@@ -1028,7 +1068,7 @@ load_source_module(char *name, char *pathname, FILE *fp)
...
@@ -1028,7 +1068,7 @@ load_source_module(char *name, char *pathname, FILE *fp)
cpathname
=
make_compiled_pathname
(
pathname
,
buf
,
cpathname
=
make_compiled_pathname
(
pathname
,
buf
,
(
size_t
)
MAXPATHLEN
+
1
);
(
size_t
)
MAXPATHLEN
+
1
);
if
(
cpathname
!=
NULL
&&
if
(
cpathname
!=
NULL
&&
(
fpc
=
check_compiled_module
(
pathname
,
st
.
st_
mtime
,
cpathname
)))
{
(
fpc
=
check_compiled_module
(
pathname
,
mtime
,
cpathname
)))
{
co
=
read_compiled_module
(
cpathname
,
fpc
);
co
=
read_compiled_module
(
cpathname
,
fpc
);
fclose
(
fpc
);
fclose
(
fpc
);
if
(
co
==
NULL
)
if
(
co
==
NULL
)
...
@@ -1053,7 +1093,7 @@ load_source_module(char *name, char *pathname, FILE *fp)
...
@@ -1053,7 +1093,7 @@ load_source_module(char *name, char *pathname, FILE *fp)
if
(
b
<
0
)
if
(
b
<
0
)
goto
error_exit
;
goto
error_exit
;
if
(
!
b
)
if
(
!
b
)
write_compiled_module
(
co
,
cpathname
,
&
st
);
write_compiled_module
(
co
,
cpathname
,
&
st
,
mtime
);
}
}
}
}
m
=
PyImport_ExecCodeModuleEx
(
name
,
(
PyObject
*
)
co
,
pathname
);
m
=
PyImport_ExecCodeModuleEx
(
name
,
(
PyObject
*
)
co
,
pathname
);
...
...
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