summaryrefslogtreecommitdiffstats
path: root/Python/errors.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-01-15 10:23:25 (GMT)
committerGitHub <noreply@github.com>2020-01-15 10:23:25 (GMT)
commit3f12ac18a407983a23d43ae785e805e773571477 (patch)
tree8fa39be8043cbe362ecb61e4f39a4dd8fe55dcfa /Python/errors.c
parentcf288b53e418d8e93626e3d87c9926067d3b3147 (diff)
downloadcpython-3f12ac18a407983a23d43ae785e805e773571477.zip
cpython-3f12ac18a407983a23d43ae785e805e773571477.tar.gz
cpython-3f12ac18a407983a23d43ae785e805e773571477.tar.bz2
bpo-39164: Fix compiler warning in PyErr_GetExcInfo() (GH-18010)
The function has no return value.
Diffstat (limited to 'Python/errors.c')
-rw-r--r--Python/errors.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/errors.c b/Python/errors.c
index cdb4460..18ea9c5 100644
--- a/Python/errors.c
+++ b/Python/errors.c
@@ -451,7 +451,7 @@ void
PyErr_GetExcInfo(PyObject **p_type, PyObject **p_value, PyObject **p_traceback)
{
PyThreadState *tstate = _PyThreadState_GET();
- return _PyErr_GetExcInfo(tstate, p_type, p_value, p_traceback);
+ _PyErr_GetExcInfo(tstate, p_type, p_value, p_traceback);
}
void
372 Tcl is a high-level, general-purpose, interpreted, dynamic programming language. It was designed with the goal of being very simple but powerful.
summaryrefslogtreecommitdiffstats
path: root/macosx/Tcl.xcodeproj
Commit message (Expand)AuthorAgeFilesLines
* Fix bug in "make dist" when system-encoding is UTF-8: eolFix will then transl...jan.nijtmans2015-06-251-2/+0
|\
| * Fix bug in "make dist" when system-encoding is UTF-8: eolFix will then transl...jan.nijtmans2015-06-251-2/+0
* | Remove another reference to tcl.wse.injan.nijtmans2012-11-081-2/+0
* | Fix roundoff gaffe in bignum-to-double conversion [Bug 3349507]Kevin B Kenny2011-07-021-0/+2
|\ \ | |/
| * Fix roundoff gaffe in bignum-to-double conversion [Bug 3349507]Kevin B Kenny2011-07-021-0/+2
* | Remove unused header file: unix/tclUnixThrd.hjan.nijtmans2011-04-041-2/+0
* | Now that we're no longer using SCM based on RCS, the RCS Keyword linesdgp2011-03-021-1/+1
|\ \ | |/
| * Now that we're no longer using SCM based on RCS, the RCS Keyword lines causedgp2011-03-021-1/+1
| * * macosx/Tcl.xcodeproj/project.pbxproj: add debug configs with gcov,das2008-06-121-62/+151
* | workaround llvm LTO bug on ppcdas2009-08-281-1/+2
* | * macosx/Tcl-Common.xcconfig: update projects for Xcode 3.1 and 3.2,das2009-06-262-349/+267
* | add new filesdas2008-12-201-1/+17
* | add new zlib filesdas2008-12-141-1/+7
* | add TIP #234 filesdas2008-12-11