Skip to content

Instantly share code, notes, and snippets.

View ewdurbin's full-sized avatar
🌮
eatin' tacos

Ee Durbin ewdurbin

🌮
eatin' tacos
View GitHub Profile
@ewdurbin
ewdurbin / PSF_CLA
Last active January 7, 2019 17:08
Python Software Foundation Contributor License Agreement
# Contributor Agreement
This Contributor Agreement is between Python Software Foundation (“PSF”) and the individual or other entity identified below (“the Contributor”).
Contributor offers to license certain software (a “Contribution” or multiple “Contributions”) to PSF, and PSF agrees to accept said Contributions, under the terms of the open source license identified below (the "Initial License").
Contributor understands and agrees that PSF shall have the irrevocable and perpetual right to make and distribute copies of any Contribution, as well as to create and distribute collective works and derivative works of any Contribution, under the Initial License or under any other open source license approved by a unanimous vote of the PSF board. Contributor shall identify each Contribution by placing the following notice in its source code adjacent to Contributor's valid copyright notice: "Licensed to PSF under a Contributor Agreement."
The currently acceptable licenses are:
import io
class StringIteratorIO(io.IOBase):
def __init__(self, iterator):
io.IOBase.__init__(self)
self._iter = iterator
self._left = ''