404

[ Avaa Bypassed ]




Upload:

Command:

elspacio@18.224.43.98: ~ $
#ifndef Py_DICTOBJECT_H
#define Py_DICTOBJECT_H
#ifdef __cplusplus
extern "C" {
#endif


/* Dictionary object type -- mapping from hashable object to object */

/* The distribution includes a separate file, Objects/dictnotes.txt,
   describing explorations into dictionary design and optimization.
   It covers typical dictionary use patterns, the parameters for
   tuning dictionaries, and several ideas for possible optimizations.
*/

/*
There are three kinds of slots in the table:

1. Unused.  me_key == me_value == NULL
   Does not hold an active (key, value) pair now and never did.  Unused can
   transition to Active upon key insertion.  This is the only case in which
   me_key is NULL, and is each slot's initial state.

2. Active.  me_key != NULL and me_key != dummy and me_value != NULL
   Holds an active (key, value) pair.  Active can transition to Dummy upon
   key deletion.  This is the only case in which me_value != NULL.

3. Dummy.  me_key == dummy and me_value == NULL
   Previously held an active (key, value) pair, but that was deleted and an
   active pair has not yet overwritten the slot.  Dummy can transition to
   Active upon key insertion.  Dummy slots cannot be made Unused again
   (cannot have me_key set to NULL), else the probe sequence in case of
   collision would have no way to know they were once active.

Note: .popitem() abuses the me_hash field of an Unused or Dummy slot to
hold a search finger.  The me_hash field of Unused or Dummy slots has no
meaning otherwise.
*/

/* PyDict_MINSIZE is the minimum size of a dictionary.  This many slots are
 * allocated directly in the dict object (in the ma_smalltable member).
 * It must be a power of 2, and at least 4.  8 allows dicts with no more
 * than 5 active entries to live in ma_smalltable (and so avoid an
 * additional malloc); instrumentation suggested this suffices for the
 * majority of dicts (consisting mostly of usually-small instance dicts and
 * usually-small dicts created to pass keyword arguments).
 */
#define PyDict_MINSIZE 8

typedef struct {
    /* Cached hash code of me_key.  Note that hash codes are C longs.
     * We have to use Py_ssize_t instead because dict_popitem() abuses
     * me_hash to hold a search finger.
     */
    Py_ssize_t me_hash;
    PyObject *me_key;
    PyObject *me_value;
} PyDictEntry;

/*
To ensure the lookup algorithm terminates, there must be at least one Unused
slot (NULL key) in the table.
The value ma_fill is the number of non-NULL keys (sum of Active and Dummy);
ma_used is the number of non-NULL, non-dummy keys (== the number of non-NULL
values == the number of Active items).
To avoid slowing down lookups on a near-full table, we resize the table when
it's two-thirds full.
*/
typedef struct _dictobject PyDictObject;
struct _dictobject {
    PyObject_HEAD
    Py_ssize_t ma_fill;  /* # Active + # Dummy */
    Py_ssize_t ma_used;  /* # Active */

    /* The table contains ma_mask + 1 slots, and that's a power of 2.
     * We store the mask instead of the size because the mask is more
     * frequently needed.
     */
    Py_ssize_t ma_mask;

    /* ma_table points to ma_smalltable for small tables, else to
     * additional malloc'ed memory.  ma_table is never NULL!  This rule
     * saves repeated runtime null-tests in the workhorse getitem and
     * setitem calls.
     */
    PyDictEntry *ma_table;
    PyDictEntry *(*ma_lookup)(PyDictObject *mp, PyObject *key, long hash);
    PyDictEntry ma_smalltable[PyDict_MINSIZE];
};

PyAPI_DATA(PyTypeObject) PyDict_Type;
PyAPI_DATA(PyTypeObject) PyDictIterKey_Type;
PyAPI_DATA(PyTypeObject) PyDictIterValue_Type;
PyAPI_DATA(PyTypeObject) PyDictIterItem_Type;
PyAPI_DATA(PyTypeObject) PyDictKeys_Type;
PyAPI_DATA(PyTypeObject) PyDictItems_Type;
PyAPI_DATA(PyTypeObject) PyDictValues_Type;

#define PyDict_Check(op) \
                 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
#define PyDict_CheckExact(op) (Py_TYPE(op) == &PyDict_Type)
#define PyDictKeys_Check(op) (Py_TYPE(op) == &PyDictKeys_Type)
#define PyDictItems_Check(op) (Py_TYPE(op) == &PyDictItems_Type)
#define PyDictValues_Check(op) (Py_TYPE(op) == &PyDictValues_Type)
/* This excludes Values, since they are not sets. */
# define PyDictViewSet_Check(op) \
    (PyDictKeys_Check(op) || PyDictItems_Check(op))

PyAPI_FUNC(PyObject *) PyDict_New(void);
PyAPI_FUNC(PyObject *) PyDict_GetItem(PyObject *mp, PyObject *key);
PyAPI_FUNC(PyObject *) _PyDict_GetItemWithError(PyObject *mp, PyObject *key);
PyAPI_FUNC(int) PyDict_SetItem(PyObject *mp, PyObject *key, PyObject *item);
PyAPI_FUNC(int) PyDict_DelItem(PyObject *mp, PyObject *key);
PyAPI_FUNC(int) _PyDict_DelItemIf(PyObject *mp, PyObject *key,
                                  int (*predicate)(PyObject *value));

PyAPI_FUNC(void) PyDict_Clear(PyObject *mp);
PyAPI_FUNC(int) PyDict_Next(
    PyObject *mp, Py_ssize_t *pos, PyObject **key, PyObject **value);
PyAPI_FUNC(int) _PyDict_Next(
    PyObject *mp, Py_ssize_t *pos, PyObject **key, PyObject **value, long *hash);
PyAPI_FUNC(PyObject *) PyDict_Keys(PyObject *mp);
PyAPI_FUNC(PyObject *) PyDict_Values(PyObject *mp);
PyAPI_FUNC(PyObject *) PyDict_Items(PyObject *mp);
PyAPI_FUNC(Py_ssize_t) PyDict_Size(PyObject *mp);
PyAPI_FUNC(PyObject *) PyDict_Copy(PyObject *mp);
PyAPI_FUNC(int) PyDict_Contains(PyObject *mp, PyObject *key);
PyAPI_FUNC(int) _PyDict_Contains(PyObject *mp, PyObject *key, long hash);
PyAPI_FUNC(PyObject *) _PyDict_NewPresized(Py_ssize_t minused);
PyAPI_FUNC(void) _PyDict_MaybeUntrack(PyObject *mp);

/* PyDict_Update(mp, other) is equivalent to PyDict_Merge(mp, other, 1). */
PyAPI_FUNC(int) PyDict_Update(PyObject *mp, PyObject *other);

/* PyDict_Merge updates/merges from a mapping object (an object that
   supports PyMapping_Keys() and PyObject_GetItem()).  If override is true,
   the last occurrence of a key wins, else the first.  The Python
   dict.update(other) is equivalent to PyDict_Merge(dict, other, 1).
*/
PyAPI_FUNC(int) PyDict_Merge(PyObject *mp,
                                   PyObject *other,
                                   int override);

/* PyDict_MergeFromSeq2 updates/merges from an iterable object producing
   iterable objects of length 2.  If override is true, the last occurrence
   of a key wins, else the first.  The Python dict constructor dict(seq2)
   is equivalent to dict={}; PyDict_MergeFromSeq(dict, seq2, 1).
*/
PyAPI_FUNC(int) PyDict_MergeFromSeq2(PyObject *d,
                                           PyObject *seq2,
                                           int override);

PyAPI_FUNC(PyObject *) PyDict_GetItemString(PyObject *dp, const char *key);
PyAPI_FUNC(int) PyDict_SetItemString(PyObject *dp, const char *key, PyObject *item);
PyAPI_FUNC(int) PyDict_DelItemString(PyObject *dp, const char *key);

PyAPI_FUNC(void) _PyDict_DebugMallocStats(FILE *out);

#ifdef __cplusplus
}
#endif
#endif /* !Py_DICTOBJECT_H */

Filemanager

Name Type Size Permission Actions
Python-ast.h File 20.62 KB 0644
Python.h File 4.27 KB 0644
abstract.h File 44.17 KB 0644
asdl.h File 1.07 KB 0644
ast.h File 230 B 0644
bitset.h File 792 B 0644
boolobject.h File 912 B 0644
bufferobject.h File 922 B 0644
bytearrayobject.h File 1.9 KB 0644
bytes_methods.h File 2.74 KB 0644
bytesobject.h File 1.13 KB 0644
cStringIO.h File 1.96 KB 0644
cellobject.h File 651 B 0644
ceval.h File 4.94 KB 0644
classobject.h File 2.93 KB 0644
cobject.h File 2.86 KB 0644
code.h File 4.3 KB 0644
codecs.h File 6.03 KB 0644
compile.h File 1.04 KB 0644
complexobject.h File 1.81 KB 0644
datetime.h File 8.12 KB 0644
descrobject.h File 2.42 KB 0644
dictobject.h File 6.73 KB 0644
dtoa.h File 338 B 0644
enumobject.h File 253 B 0644
errcode.h File 1.37 KB 0644
eval.h File 557 B 0644
fileobject.h File 3.58 KB 0644
floatobject.h File 5.49 KB 0644
frameobject.h File 3.18 KB 0644
funcobject.h File 2.92 KB 0644
genobject.h File 891 B 0644
graminit.h File 1.87 KB 0644
grammar.h File 2 KB 0644
import.h File 2.17 KB 0644
intobject.h File 2.91 KB 0644
intrcheck.h File 274 B 0644
iterobject.h File 522 B 0644
listobject.h File 2.51 KB 0644
longintrepr.h File 3.82 KB 0644
longobject.h File 5.67 KB 0644
marshal.h File 713 B 0644
memoryobject.h File 2.76 KB 0644
metagrammar.h File 253 B 0644
methodobject.h File 3.28 KB 0644
modsupport.h File 4.91 KB 0644
moduleobject.h File 609 B 0644
node.h File 938 B 0644
object.h File 39.12 KB 0644
objimpl.h File 14 KB 0644
opcode.h File 4.7 KB 0644
osdefs.h File 1.03 KB 0644
parsetok.h File 1.74 KB 0644
patchlevel.h File 1.42 KB 0644
pgen.h File 253 B 0644
pgenheaders.h File 1.15 KB 0644
py_curses.h File 4.17 KB 0644
pyarena.h File 2.63 KB 0644
pycapsule.h File 1.64 KB 0644
pyconfig-64.h File 36.94 KB 0644
pyconfig.h File 162 B 0644
pyctype.h File 1.24 KB 0644
pydebug.h File 1.29 KB 0644
pyerrors.h File 11.47 KB 0644
pyexpat.h File 2.07 KB 0644
pyfpe.h File 8.27 KB 0644
pygetopt.h File 348 B 0644
pymacconfig.h File 2.92 KB 0644
pymactoolbox.h File 8.43 KB 0644
pymath.h File 7.16 KB 0644
pymem.h File 4.6 KB 0644
pyport.h File 31.79 KB 0644
pystate.h File 6.25 KB 0644
pystrcmp.h File 463 B 0644
pystrtod.h File 1.54 KB 0644
pythonrun.h File 7.06 KB 0644
pythread.h File 1.13 KB 0644
rangeobject.h File 646 B 0644
setobject.h File 3 KB 0644
sliceobject.h File 1.64 KB 0644
stringobject.h File 7.79 KB 0644
structmember.h File 2.83 KB 0644
structseq.h File 862 B 0644
symtable.h File 3.64 KB 0644
sysmodule.h File 865 B 0644
timefuncs.h File 541 B 0644
token.h File 1.76 KB 0644
traceback.h File 697 B 0644
tupleobject.h File 2.12 KB 0644
ucnhash.h File 924 B 0644
unicodeobject.h File 51 KB 0644
warnings.h File 635 B 0644
weakrefobject.h File 2.74 KB 0644