Notice: This page displays a fallback because interactive scripts did not run. Possible causes include disabled JavaScript or failure to load scripts or stylesheets.
...(9 of ll) were present at the meeting: Raymond Hettinger, Steve Holden, Marc-Andre Lemburg, Doug Napoleone, Jesse Noller, Tim Peters, Allison Randal, Jeff Rush, and Gloria Willadsen. Also in attendance were Kurt Kaiser (Treasurer) and Pat Campbell (Secretary & Administrator). 2 Minutes of Past Meetings The 19 September 2011 Board meeting minutes were voted on and approved. RESOLVED, that the minutes of September 19, 2011 should be accepted as a fair and accurate record of...
...(new report) A. Riley, Google Summer of Code (GSoC), reported on the program's new activities for the month. He said: I finished the PSF's payment request for GSoC 2011 and passed the resulting purchase order to Kurt for invoicing. As a change of policy from previous years this must be invoiced by Dec 31 to receive payment. The purchase order is for $15000 USD ($500 * 30 students mentored) in addition to travel reimbursements for the GSoC mentor summit. Arc also reported on the planned activit...
...(check one of "Yes", "No", or "Abstain" for each nominee): Nominee Yes No Abstain PropertySold.ca Lucasfilm OpenEye Scientific Software KNMP Number of Directors There are currently eight (8) positions. RESOLVED, that the Board of Directors will consist of up to ten (10) Directors. Please vote (check one) [ ] For [ ] Against [ &...
...("PSF") Board of Directors was held over Internet Relay Chat beginning at 18:00 UTC, 10 January 2006. Stephan Deibel presided at the meeting. 1 Attendance The following members of the Board of Directors were present at the meeting: Stephan Deibel, Martin von Löwis, Andrew Kuchling, Tim Peters, and David Ascher (arrived at 18:45). Also in attendance were Kurt B. Kaiser (Treasurer), Neal Norwitz (Assistant Treasurer), and David Goodger (Assistant Secretary). D. Goodg...
...(or their resignation). President: Guido van Rossum Chairman: Steve Holden Secretary: Pat Campbell Treasurer: Kurt Kaiser Communications: Doug Hellmann Approved, 11-0-0. 9 Email Voting Procedures RESOLVED, That the PSF Board of Directors may adopt binding resolutions between regularly scheduled full-board meetings by email, subject to the following procedures: (1) Any Director may make a motion to the Board, using the published Board mailing list address. (2) For a motion ...
...(initData) .enter() .append("rect") .attr("class", "bar"); g.selectAll("rect.bar") .data(initData) .attr("transform", "translate(" + (-barWidth/2) + ", 0 )") .attr("x", function(d) { return scaleX(d.x); }) .attr("y", function(d) { return scaleY(d.y) + chartOptions.margin; }) .attr("height", function(d) { return yAxisLength - scaleY(d.y); }) .attr("width", function(d){ return barWidth; }) svg.append("g").selectAll("text") .data(ini...
...(). PyTuple_Pack(3, a, b, c) is equivalent to Py_BuildValue("(OOO)", a, b, c). Windows The _winreg module could segfault when reading very large registry values, due to unchecked alloca() calls (SF bug 851056). The fix is uses either PyMem_Malloc(n) or PyString_FromStringAndSize(NULL, n), as appropriate, followed by a size check. file.truncate() could misbehave if the file was open for update (modes r+, rb+, w+, wb+), and the most recent file operation before the truncate() call ...
...((a, b, c)). The connect(), connect_ex() and bind() methods for sockets require exactly one argument. Previously, you could call s.connect(host, port), but this was undocumented. You must now write s.connect((host, port)). The str() and repr() functions are now different more often. For long integers, str() no longer appends a 'L'. Thus, str(1L) == '1', which used to be '1L'; repr(1L) is unchanged and still returns '1L'. For floats, repr() now gives 17 digits of precision, to ensure no precis...
...(GSoC) 6.2.1 Ongoing Projects 6.2.2 Tabled Activities 6.3 Infrastructure Committee (IC) 6.4 Marketing Material 6.4.1 Sponsor Options 6.4.2 Educational Sponsorship 6.4.3 Please Help find Sponsors 6.5 Moving PyPI to Amazon CloudFront 6.6 Outreach and Education Committee (OEC) 6.6.1 Grant proposals 6.6.2 Discus...
...() method (in Python) or the tp_iter slot (in C). Iterating (i.e. a for loop) over a dictionary generates its keys. Iterating over a file generates its lines. The following functions were generalized to work nicely with iterator arguments: map(), filter(), reduce(), zip() list(), tuple() (PySequence_Tuple() and PySequence_Fast() in C API) max(), min() join() method of strings extend() method of lists 'x in y' and 'x not in y' (PySequence_Contains() in C API) operator.countOf() (PySequence_Coun...
...(DocBook.Rules.InformalTable): "application's informal table" TGROUP = TGroup class Example (DocBook): 'example application of DocBook formatting class' SECTION = str (InformalTable) def __call__ (self): self.data = [ InformalTable ()(self.data) ] return DocBook.__call__ (self) if __name__ == '__main__': print Example ([('statex', 'Integer'), ('statey', 'Long')]) () The OpenJade Interface OpenJade is an open source product...
...(r)". For example "Python® ..." This requirement is waived in all contexts where such marks are not normally included: email, online discussion, non-graphical advertisements (when permitted), and academic papers. We encourage the use of the symbol whenever possible, but recognize that many non-commercial and informal uses will omit it. The Python logos are not currently registered. (We will post an update to this policy if they are registered later.) These logos should be used in...
...(if available) override the generic (probably slower) implementations. For example: platform = ... # Figure out which platform applies dirname = __path__[0] # Package's main folder __path__.insert(0, os.path.join(dirname, "plat-" + platform)) If it is not desirable that platform specific submodules hide generic modules with the same name, __path__.append(...) should be used instead of __path__.insert(0, ...). Note that the plat-* subdirectories are not subpackages of E...
...(2017) Dana Bauer (2012) Daniel Greenfeld (2011) Daniel Pope (2017) Daniele Procida (2017) Danny Adair (2022) Darya Chyzhyk (2020) Dave Forgac (2025) Dave Malcolm (2012) David Goodger (2003) David Lord (2020) David Markey (2018) Dawn Wages (2025) Dean Troyer (2012) Débora Azevedo (2020) Denny Perez (2022) Diana Clarke (2013) Dino Viehland (2009) Don Sheu (2017) Donald Beaudry (2002) Donald Stufft (2017) Doug Hellmann (2009) Doug Napoleone (2007) Duncan McGreggor (2009) Dustin Ingram (2...
...("+0xffffffff", 0) and int("0xffffffff", 16) right now. (PEP 347) super(X, x): x may now be a proxy for an X instance, i.e. issubclass(x.__class__, X) but not issubclass(type(x), X). isinstance(x, X): if X is a new-style class, this is now equivalent to issubclass(type(x), X) or issubclass(x.__class__, X). Previously only type(x) was tested. (For classic classes this was already the case.) compile(), eval() and the exec statement now fully support source code passed as uni...
...(using /usr/lib/rpm/find-provides)... Finding Requires: (using /usr/lib/rpm/find-requires)... PreReq: rpmlib(PayloadFilesHavePrefix) <= 4.0-1 System Message: ERROR/3 (<string>, line 234) Unexpected indentation. rpmlib(CompressedFileNames) <= 3.0.4-1 System Message: WARNING/2 (<string>, line 235) Block quote ends without a blank line; unexpected unindent. Requires(rpmlib): rpmlib(PayloadFilesHavePrefix) <= 4.0-1 rpmlib(CompressedFileNames) <= 3.0.4-1 ...
Python Software Foundation Sponsors The PSF would not be possible without the generous financial help of the following sponsors. While the PSF thanks these sponsors for their support, we don't necessarily endorse nor promote any specific activity of any of its sponsors. Interested in becoming a sponsor? Check out our sponsor application. Visionary Sponsors Googl...
...(3) was introduced. This new version has some small but significant changes from the previous one. The most visible change for beginners is that print which used to be a Python keyword >>> print "Hello World!" # for Python 2 is now a function: >>> print("Hello World!") # for Python 3 As a result of the changes, programs written for Python 2 are likely to be incompatible with Python 3 (and vice-versa). Some of you may have not control over which Py...
...(such as when the proposal will receive Board consideration). If more than one award is proposed in a given period, the Board may elect to hold over a proposal. Awards will be considered in the order in which they are received. While it would be unusual for a single individual to receive multiple awards, repeated awards will be appropriate to acknowledge ongoing contributions. Recipients need not be Foundation members (though receiving an award may be an indication that consideration for membe...
...(anecdotal) evidence that Python is easy to learn for people who are (nearly) computer-illiterate. There are currently no development tools or training materials for Python that suit such an audience. We will make development of these the main focus of our task. We want to foster a community specifically focused on our tools and materials, so we can collect the necessary feedback; there is already interest in the use of Python by "newbies" in the existing Python community (estimated a...
If you didn't find what you need, try your search in the Python language documentation.