Staging
v0.5.1
https://github.com/python/cpython
Revision 104aab956f6de4131cab800f742cc108f9f92edf authored by R David Murray on 18 September 2013, 00:30:02 UTC, committed by R David Murray on 18 September 2013, 00:30:02 UTC
Initial patch by Bruno Piguet.

This is implemented as if a useful .netrc file could exist without passwords,
which is possible in the general case; but in fact our netrc implementation
does not support it.  Fixing that issue will be an enhancement.
1 parent c17a8df
Raw File
Tip revision: 104aab956f6de4131cab800f742cc108f9f92edf authored by R David Murray on 18 September 2013, 00:30:02 UTC
#14984: On POSIX, enforce permissions when reading default .netrc.
Tip revision: 104aab9
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