this repo has no description
at trunk 21 lines 656 B view raw
1/* Copyright (c) Facebook, Inc. and its affiliates. (http://www.facebook.com) */ 2#pragma once 3 4#include "globals.h" 5#include "handles-decl.h" 6#include "symbols.h" 7 8namespace py { 9 10class Thread; 11 12RawObject delAttribute(Thread* thread, const Object& object, 13 const Object& name); 14RawObject getAttribute(Thread* thread, const Object& object, 15 const Object& name); 16RawObject hasAttribute(Thread* thread, const Object& object, 17 const Object& name); 18RawObject setAttribute(Thread* thread, const Object& object, const Object& name, 19 const Object& value); 20 21} // namespace py