Staging
v0.5.1
https://github.com/python/cpython
Revision 0029099decbf0272cea837b029662bee1ee3e4d4 authored by Miss Islington (bot) on 24 June 2020, 11:14:10 UTC, committed by GitHub on 24 June 2020, 11:14:10 UTC
Automerge-Triggered-By: @matrixise
(cherry picked from commit 80526f68411a9406a9067095fbf6a0f88047cac5)

Co-authored-by: Jürgen Gmach <juergen.gmach@googlemail.com>

Co-authored-by: Jürgen Gmach <juergen.gmach@googlemail.com>
1 parent 4f5dde4
Raw File
Tip revision: 0029099decbf0272cea837b029662bee1ee3e4d4 authored by Miss Islington (bot) on 24 June 2020, 11:14:10 UTC
Fix typo in dataclasses module (GH-21109) (#21111)
Tip revision: 0029099
interpreteridobject.h
#ifndef Py_INTERPRETERIDOBJECT_H
#define Py_INTERPRETERIDOBJECT_H

#ifdef __cplusplus
extern "C" {
#endif

#ifndef Py_LIMITED_API
#  define Py_CPYTHON_INTERPRETERIDOBJECT_H
#  include  "cpython/interpreteridobject.h"
#  undef Py_CPYTHON_INTERPRETERIDOBJECT_H
#endif

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