From 0f783599a4c645d8ae826f990f7b938fac6e5dae Mon Sep 17 00:00:00 2001 From: Lawrence D'Anna Date: Thu, 17 Oct 2019 01:35:22 +0000 Subject: delete SWIG typemaps for FILE* Summary: The SWIG typemaps for FILE* are no longer used, so this patch deletes them. Reviewers: JDevlieghere, jasonmolenda, labath Reviewed By: labath Subscribers: lldb-commits Tags: #lldb Differential Revision: https://reviews.llvm.org/D68963 llvm-svn: 375073 --- .../ScriptInterpreter/Python/PythonDataObjects.cpp | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp') diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp b/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp index e2112b15008..8c0618cd91a 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp +++ b/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp @@ -837,25 +837,6 @@ bool PythonFile::Check(PyObject *py_obj) { #endif } -FileUP PythonFile::GetUnderlyingFile() const { - if (!IsValid()) - return nullptr; - - // We don't own the file descriptor returned by this function, make sure the - // File object knows about that. - PythonString py_mode = GetAttributeValue("mode").AsType(); - auto options = File::GetOptionsFromMode(py_mode.GetString()); - if (!options) { - llvm::consumeError(options.takeError()); - return nullptr; - } - auto file = std::unique_ptr(new NativeFile( - PyObject_AsFileDescriptor(m_py_obj), options.get(), false)); - if (!file->IsValid()) - return nullptr; - return file; -} - namespace { class GIL { public: -- cgit v1.2.3