Staging
v0.5.1
https://github.com/python/cpython
Revision 1cdd0e71ecba53ab60080958c24193c27c3adee2 authored by Miss Islington (bot) on 04 June 2018, 17:17:28 UTC, committed by GitHub on 04 June 2018, 17:17:28 UTC

The bytes parameter uses big endian.
(cherry picked from commit b75ec0856771b51684b08c4e5068fbfad25c5e83)

Co-authored-by: Farhaan Bukhsh <farhaan.bukhsh@gmail.com>
1 parent b7eb102
Raw File
Tip revision: 1cdd0e71ecba53ab60080958c24193c27c3adee2 authored by Miss Islington (bot) on 04 June 2018, 17:17:28 UTC
bpo-33640, uuid.UUID doc: document endian of bytes parameter (GH-7263)
Tip revision: 1cdd0e7
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