PEP 227 implementation

A cell contains a reference to a single PyObject.  It could be
implemented as a mutable, one-element sequence, but the separate type
has less overhead.
This commit is contained in:
Jeremy Hylton 2001-01-25 20:04:14 +00:00
parent c34a5ade0a
commit fbd849f201
4 changed files with 145 additions and 0 deletions

View file

@ -81,6 +81,7 @@
#include "cobject.h"
#include "traceback.h"
#include "sliceobject.h"
#include "cellobject.h"
#include "codecs.h"
#include "pyerrors.h"