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
09b86d11
Kaydet (Commit)
09b86d11
authored
Nis 17, 2012
tarafından
Brian Curtin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix #14600. Correct reference handling and naming of ImportError convenience function
üst
fba807ac
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
31 additions
and
53 deletions
+31
-53
exceptions.rst
Doc/c-api/exceptions.rst
+4
-19
pyerrors.h
Include/pyerrors.h
+2
-3
dynload_win.c
Python/dynload_win.c
+3
-3
errors.c
Python/errors.c
+20
-27
import.c
Python/import.c
+2
-1
No files found.
Doc/c-api/exceptions.rst
Dosyayı görüntüle @
09b86d11
...
...
@@ -229,27 +229,12 @@ in various ways. There is a separate error indicator for each thread.
Similar to :c:func:`PyErr_SetFromWindowsErrWithFilename`, with an additional
parameter specifying the exception type to be raised. Availability: Windows.
.. c:function:: PyObject* PyErr_SetExcWithArgsKwargs(PyObject *exc, PyObject *args, PyObject *kwargs)
This is a convenience function to set an *exc* with the given *args* and
*kwargs* values. If *args* is ``NULL``, an empty :func:`tuple` will be
created when *exc* is created via :c:func:`PyObject_Call`.
.. versionadded:: 3.3
.. c:function:: PyObject* PyErr_SetFromImportErrorWithName(PyObject *msg, PyObject *name)
This is a convenience function to raise :exc:`ImportError`. *msg* will be
set as the exception's message string, and *name* will be set as the
:exc:`ImportError`'s ``name`` attribute.
.. versionadded:: 3.3
.. c:function:: PyObject* PyErr_SetFromImportErrorWithNameAndPath(PyObject *msg, PyObject *name, PyObject *path)
.. c:function:: PyObject* PyErr_SetImportError(PyObject *msg, PyObject *name, PyObject *path)
This is a convenience function to raise :exc:`ImportError`. *msg* will be
set as the exception's message string. Both *name* and *path* will be set
as the :exc:`ImportError`'s respective ``name`` and ``path`` attributes.
set as the exception's message string. *name* and *path*, both of which can
be ``NULL``, will be set as the :exc:`ImportError`'s respective ``name``
and ``path`` attributes.
.. versionadded:: 3.3
...
...
Include/pyerrors.h
Dosyayı görüntüle @
09b86d11
...
...
@@ -265,9 +265,8 @@ PyAPI_FUNC(PyObject *) PyErr_SetExcFromWindowsErr(PyObject *, int);
PyAPI_FUNC
(
PyObject
*
)
PyErr_SetExcWithArgsKwargs
(
PyObject
*
,
PyObject
*
,
PyObject
*
);
PyAPI_FUNC
(
PyObject
*
)
PyErr_SetFromImportErrorWithNameAndPath
(
PyObject
*
,
PyObject
*
,
PyObject
*
);
PyAPI_FUNC
(
PyObject
*
)
PyErr_SetFromImportErrorWithName
(
PyObject
*
,
PyObject
*
);
PyAPI_FUNC
(
PyObject
*
)
PyErr_SetImportError
(
PyObject
*
,
PyObject
*
,
PyObject
*
);
/* Export the old function so that the existing API remains available: */
PyAPI_FUNC
(
void
)
PyErr_BadInternalCall
(
void
);
...
...
Python/dynload_win.c
Dosyayı görüntüle @
09b86d11
...
...
@@ -254,9 +254,9 @@ dl_funcptr _PyImport_GetDynLoadWindows(const char *shortname,
theLength
));
}
if
(
message
!=
NULL
)
{
PyErr_Set
FromImportErrorWithNameAndPath
(
message
,
PyUnicode_FromString
(
shortname
),
pathnam
e
);
PyErr_Set
ImportError
(
message
,
PyUnicode_FromString
(
shortname
)
,
pathname
);
Py_DECREF
(
messag
e
);
}
return
NULL
;
}
else
{
...
...
Python/errors.c
Dosyayı görüntüle @
09b86d11
...
...
@@ -586,50 +586,43 @@ PyObject *PyErr_SetFromWindowsErrWithUnicodeFilename(
#endif
/* MS_WINDOWS */
PyObject
*
PyErr_Set
ExcWithArgsKwargs
(
PyObject
*
exc
,
PyObject
*
args
,
PyObject
*
kwargs
)
PyErr_Set
ImportError
(
PyObject
*
msg
,
PyObject
*
name
,
PyObject
*
path
)
{
PyObject
*
val
;
PyObject
*
args
,
*
kwargs
,
*
error
;
/* args must at least be an empty tuple */
args
=
PyTuple_New
(
1
);
if
(
args
==
NULL
)
args
=
PyTuple_New
(
0
);
val
=
PyObject_Call
(
exc
,
args
,
kwargs
);
if
(
val
!=
NULL
)
{
PyErr_SetObject
((
PyObject
*
)
Py_TYPE
(
val
),
val
);
Py_DECREF
(
val
);
}
return
NULL
;
return
NULL
;
}
kwargs
=
PyDict_New
();
if
(
args
==
NULL
)
return
NULL
;
PyObject
*
PyErr_SetFromImportErrorWithNameAndPath
(
PyObject
*
msg
,
PyObject
*
name
,
PyObject
*
path
)
{
PyObject
*
args
=
PyTuple_New
(
1
);
PyObject
*
kwargs
=
PyDict_New
();
PyObject
*
result
;
if
(
name
==
NULL
)
name
=
Py_None
;
if
(
path
==
NULL
)
path
=
Py_None
;
Py_INCREF
(
msg
);
PyTuple_SetItem
(
args
,
0
,
msg
);
PyDict_SetItemString
(
kwargs
,
"name"
,
name
);
PyDict_SetItemString
(
kwargs
,
"path"
,
path
);
result
=
PyErr_SetExcWithArgsKwargs
(
PyExc_ImportError
,
args
,
kwargs
);
/* args must at least be an empty tuple */
if
(
args
==
NULL
)
args
=
PyTuple_New
(
0
);
error
=
PyObject_Call
(
PyExc_ImportError
,
args
,
kwargs
);
if
(
error
!=
NULL
)
{
PyErr_SetObject
((
PyObject
*
)
Py_TYPE
(
error
),
error
);
Py_DECREF
(
error
);
}
Py_DECREF
(
args
);
Py_DECREF
(
kwargs
);
return
result
;
}
PyObject
*
PyErr_SetFromImportErrorWithName
(
PyObject
*
msg
,
PyObject
*
name
)
{
return
PyErr_SetFromImportErrorWithNameAndPath
(
msg
,
name
,
NULL
);
return
NULL
;
}
void
...
...
Python/import.c
Dosyayı görüntüle @
09b86d11
...
...
@@ -2460,7 +2460,8 @@ PyImport_ImportModuleLevelObject(PyObject *name, PyObject *given_globals,
PyObject
*
msg
=
PyUnicode_FromFormat
(
"import of %R halted; "
"None in sys.modules"
,
abs_name
);
if
(
msg
!=
NULL
)
{
PyErr_SetFromImportErrorWithName
(
msg
,
abs_name
);
PyErr_SetImportError
(
msg
,
abs_name
,
NULL
);
Py_DECREF
(
msg
);
}
mod
=
NULL
;
goto
error_with_unlock
;
...
...
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