Remove unnecessary complexity and just use the base sequence type common

to both 1.0 and later versions in PyCodeObject.
This commit is contained in:
Michael Hansen
2018-04-28 11:37:13 -07:00
parent 1b01af45fd
commit 56e442605a
3 changed files with 5 additions and 27 deletions

View File

@@ -30,8 +30,6 @@ public:
const value_t& values() const { return m_values; }
PycRef<PycObject> get(int idx) const { return m_values.at(idx); }
static PycRef<PycTuple> fromList(const PycRef<class PycList>& obj);
private:
value_t m_values;
};