Staging
v0.5.1
https://github.com/python/cpython
Revision f1547d110ff195291e29ba5c29617912d12ecbec authored by Miss Islington (bot) on 17 April 2018, 15:36:30 UTC, committed by Ned Deily on 17 April 2018, 15:36:30 UTC
`test_urllib2net.OtherNetworkTests.test_sites_no_connection_close`
used `http://www.imdb.com/` but it is moved to https so the test is
not valid anymore.  Skip test for the moment to allow CI to proceed.
(cherry picked from commit 36d56ea826caffbeac0fc0c6d90248b80516e33c)

Co-authored-by: INADA Naoki <methane@users.noreply.github.com>
1 parent f44ce35
Raw File
Tip revision: f1547d110ff195291e29ba5c29617912d12ecbec authored by Miss Islington (bot) on 17 April 2018, 15:36:30 UTC
bpo-33295: Skip test using missing external site (GH-6504) (GH-6511)
Tip revision: f1547d1
namespaceobject.h

/* simple namespace object interface */

#ifndef NAMESPACEOBJECT_H
#define NAMESPACEOBJECT_H
#ifdef __cplusplus
extern "C" {
#endif

#ifndef Py_LIMITED_API
PyAPI_DATA(PyTypeObject) _PyNamespace_Type;

PyAPI_FUNC(PyObject *) _PyNamespace_New(PyObject *kwds);
#endif /* !Py_LIMITED_API */

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