Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
128cc911
Commit
128cc911
authored
Jan 07, 2008
by
Christian Heimes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Another patch for #1762972: __file__ points to the py file instead pyo/pyc file
parent
0b530d16
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
63 additions
and
5 deletions
+63
-5
Lib/test/test_import.py
Lib/test/test_import.py
+22
-1
Misc/NEWS
Misc/NEWS
+3
-0
Python/import.c
Python/import.c
+38
-4
No files found.
Lib/test/test_import.py
View file @
128cc911
from
test.test_support
import
TESTFN
,
run_unittest
,
catch_warning
from
test.test_support
import
TESTFN
,
run_unittest
,
catch_warning
import
unittest
import
os
...
...
@@ -200,6 +200,27 @@ class ImportTest(unittest.TestCase):
if
TESTFN
in
sys
.
modules
:
del
sys
.
modules
[
TESTFN
]
def
test_file_to_source
(
self
):
# check if __file__ points to the source file where available
source
=
TESTFN
+
".py"
with
open
(
source
,
"w"
)
as
f
:
f
.
write
(
"test = None
\
n
"
)
sys
.
path
.
insert
(
0
,
os
.
curdir
)
try
:
mod
=
__import__
(
TESTFN
)
self
.
failUnless
(
mod
.
__file__
.
endswith
(
'.py'
))
os
.
remove
(
source
)
del
sys
.
modules
[
TESTFN
]
mod
=
__import__
(
TESTFN
)
self
.
failUnless
(
mod
.
__file__
.
endswith
(
'.pyc'
))
finally
:
sys
.
path
.
pop
(
0
)
remove_files
(
TESTFN
)
if
TESTFN
in
sys
.
modules
:
del
sys
.
modules
[
TESTFN
]
class
PathsTests
(
unittest
.
TestCase
):
SAMPLES
=
(
'test'
,
'test
\
u00e4
\
u00f6
\
u00fc
\
u00df
'
,
'test
\
u00e9
\
u00e8
'
,
'test
\
u00b0
\
u00b3
\
u00b2
'
)
...
...
Misc/NEWS
View file @
128cc911
...
...
@@ -12,6 +12,9 @@ What's New in Python 3.0a3?
Core and Builtins
-----------------
- Issue #1762972: __file__ points to the source file instead of the pyc/pyo
file if the py file exists.
- Issue #1393: object_richcompare() returns NotImplemented instead of
False if the objects aren't equal, to give the other side a chance.
...
...
Python/import.c
View file @
128cc911
...
...
@@ -78,9 +78,10 @@ extern time_t PyOS_GetLastModificationTime(char *, FILE *);
3080 (PEP 3137 make __file__ and __name__ unicode)
3090 (kill str8 interning)
3100 (merge from 2.6a0, see 62151)
3102 (__file__ points to source file)
.
*/
#define MAGIC (310
0
| ((long)'\r'<<16) | ((long)'\n'<<24))
#define MAGIC (310
2
| ((long)'\r'<<16) | ((long)'\n'<<24))
/* Magic word as global; note that _PyImport_Init() can change the
value of this global to accommodate for alterations of how the
...
...
@@ -624,6 +625,8 @@ _RemoveModule(const char *name)
"sys.modules failed"
);
}
static
PyObject
*
get_sourcefile
(
const
char
*
file
);
/* Execute a code object in a module and return the module object
* WITH INCREMENTED REFERENCE COUNT. If an error occurs, name is
* removed from sys.modules, to avoid leaving damaged module objects
...
...
@@ -657,7 +660,7 @@ PyImport_ExecCodeModuleEx(char *name, PyObject *co, char *pathname)
/* Remember the filename as the __file__ attribute */
v
=
NULL
;
if
(
pathname
!=
NULL
)
{
v
=
PyUnicode_DecodeFSDefault
(
pathname
);
v
=
get_sourcefile
(
pathname
);
if
(
v
==
NULL
)
PyErr_Clear
();
}
...
...
@@ -960,12 +963,43 @@ load_source_module(char *name, char *pathname, FILE *fp)
return
m
;
}
/* Get source file -> unicode or None
* Returns the path to the py file if available, else the given path
*/
static
PyObject
*
get_sourcefile
(
const
char
*
file
)
{
char
py
[
MAXPATHLEN
+
1
];
Py_ssize_t
len
;
PyObject
*
u
;
struct
stat
statbuf
;
if
(
!
file
||
!*
file
)
{
Py_RETURN_NONE
;
}
len
=
strlen
(
file
);
if
(
len
>
MAXPATHLEN
||
PyOS_stricmp
(
&
file
[
len
-
4
],
".pyc"
)
!=
0
)
{
return
PyUnicode_DecodeFSDefault
(
file
);
}
strncpy
(
py
,
file
,
len
-
1
);
py
[
len
]
=
'\0'
;
if
(
stat
(
py
,
&
statbuf
)
==
0
&&
S_ISREG
(
statbuf
.
st_mode
))
{
u
=
PyUnicode_DecodeFSDefault
(
py
);
}
else
{
u
=
PyUnicode_DecodeFSDefault
(
file
);
}
return
u
;
}
/* Forward */
static
PyObject
*
load_module
(
char
*
,
FILE
*
,
char
*
,
int
,
PyObject
*
);
static
struct
filedescr
*
find_module
(
char
*
,
char
*
,
PyObject
*
,
char
*
,
size_t
,
FILE
**
,
PyObject
**
);
static
struct
_frozen
*
find_frozen
(
char
*
name
);
static
struct
_frozen
*
find_frozen
(
char
*
);
/* Load a package and return its module object WITH INCREMENTED
REFERENCE COUNT */
...
...
@@ -988,7 +1022,7 @@ load_package(char *name, char *pathname)
PySys_WriteStderr
(
"import %s # directory %s
\n
"
,
name
,
pathname
);
d
=
PyModule_GetDict
(
m
);
file
=
PyUnicode_DecodeFSDefault
(
pathname
);
file
=
get_sourcefile
(
pathname
);
if
(
file
==
NULL
)
goto
error
;
path
=
Py_BuildValue
(
"[O]"
,
file
);
...
...
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