Staging
v0.8.1
https://github.com/python/cpython
Revision eb24988962728b3edbd346ced938c4120e7e2eed authored by Serhiy Storchaka on 15 August 2016, 06:46:07 UTC, committed by Serhiy Storchaka on 15 August 2016, 06:46:07 UTC
and iterables.  Speed up to 3 times for short objects.  Original patch by
Naoki Inada.
1 parent d003423
Raw File
Tip revision: eb24988962728b3edbd346ced938c4120e7e2eed authored by Serhiy Storchaka on 15 August 2016, 06:46:07 UTC
Issue #27704: Optimized creating bytes and bytearray from byte-like objects
Tip revision: eb24988
metagrammar.h
#ifndef Py_METAGRAMMAR_H
#define Py_METAGRAMMAR_H
#ifdef __cplusplus
extern "C" {
#endif


#define MSTART 256
#define RULE 257
#define RHS 258
#define ALT 259
#define ITEM 260
#define ATOM 261

#ifdef __cplusplus
}
#endif
#endif /* !Py_METAGRAMMAR_H */
back to top