Staging
v0.5.1
https://github.com/python/cpython
Revision b3d11abcbc0fcf794f9be29aa78bb3d100a54960 authored by Emmanuel Arias on 13 September 2020, 21:38:01 UTC, committed by GitHub on 13 September 2020, 21:38:01 UTC
On this paragrapah the clarification about IIS7 seems there's not
connection beacuase is in other sentence. Move the punctuation
to connect both the last sentence with the information in the
parenthesis.

I think the NEWS is not necessary here.

Automerge-Triggered-By: @ericvsmith
(cherry picked from commit 94bfdee25db31941b187591ae5ae9bf3ed431090)

Co-authored-by: Emmanuel Arias <eamanu@yaerobi.com>
1 parent c978be2
Raw File
Tip revision: b3d11abcbc0fcf794f9be29aa78bb3d100a54960 authored by Emmanuel Arias on 13 September 2020, 21:38:01 UTC
[3.9] bpo-41778: Change a punctuation on documentation. (GH-22229) (GH-22232)
Tip revision: b3d11ab
rangeobject.h

/* Range object interface */

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

/*
A range object represents an integer range.  This is an immutable object;
a range cannot change its value after creation.

Range objects behave like the corresponding tuple objects except that
they are represented by a start, stop, and step datamembers.
*/

PyAPI_DATA(PyTypeObject) PyRange_Type;
PyAPI_DATA(PyTypeObject) PyRangeIter_Type;
PyAPI_DATA(PyTypeObject) PyLongRangeIter_Type;

#define PyRange_Check(op) Py_IS_TYPE(op, &PyRange_Type)

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