From 00cdc77ac913c9b786d54567863ba2f4e3cfd1c5 Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Mon, 11 Jan 2016 23:10:32 +0000 Subject: Don't define Bytes and String to be the same number on Py2. This is causing issues with case labels having the same value. llvm-svn: 257409 --- lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h') diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h b/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h index 0720f46..06264b6 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h +++ b/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h @@ -74,11 +74,7 @@ enum class PyObjectType Dictionary, List, String, -#if PY_MAJOR_VERSION >= 3 Bytes, -#else - Bytes = String, -#endif Module, Callable, Tuple, -- cgit v1.1