Notice: This page displays a fallback because interactive scripts did not run. Possible causes include disabled JavaScript or failure to load scripts or stylesheets.
...2.2.tgz the SBOM document will be named Python-3.12.2.tgz.spdx.json. SBOM documents can be downloaded from the Python release page or can be downloaded using an HTTP client. Below is an example of downloading the SBOM document using curl: $ curl --remote-name https://www.python.org/ftp/python/3.12.2/Python-3.12.2.tgz.spdx.json After downloading the SBOM document there should be a file named Python-3.12.2.tgz.spdx.json in your working directory. What's included in CPython's Software Bill-of-Mate...
...24.chm. Files, MD5 checksums, signatures and sizes 07cfc759546f6723bb367be5b1ce9875 Python-2.4.2.tgz (9239975 bytes, signature) 98db1465629693fc434d4dc52db93838 Python-2.4.2.tar.bz2 (7853169 bytes, signature) bfb6fc0704d225c7a86d4ba8c922c7f5 python-2.4.2.msi (9671168 bytes, signature) f9a189a11316dc523732b38334c9dd7b python-2.4.2.ia64.msi (8110080 bytes, signature) XXXXX575a2c5d6ab24be10c38154551a MacPython-OSX-2.4.2-1.dmg (7918391 bytes, signature) The signatures above were generated with ...
...2.2.2/rpms/python2.2.2-2.2.2-1.src.rpm">python2.2.2-2.2.2-1.src.rpm</a> (6667399 bytes) <b>Red Hat 8.0 (based on Red Hat's SRPM)</b> ff9660dde4d5f736c42409c8815f1634 <a href="/ftp/python/2.2.2/rpms/redhat8.0/python-2.2.2-7.src.rpm">python-2.2.2-7.src.rpm</a> (6952435 bytes) 4263943b81be5554df3f8c10a5ff406a <a href="/ftp/python/2.2.2/rpms/redhat8.0/python-2.2.2-7.i386.rpm">python-2.2.2-7.i386.rpm</a> (4221481 bytes) e8876066aa0...
...2005, Section 6, PSF Member Meeting: D. Goodger to complete the minutes for the 2005 PSF member meeting. Status: in progress. Originally from 14 February 2005, Section 4, Financials: K. Kaiser will ping the sponsor members who have not yet paid their 2006 PSF sponsor fees. Status: carried forward. 3.3 New in February/PyCon These action items originated in the 25 February 2006 special board meeting at PyCon 2006 in Dallas/Addison Texas. Section 4, Other Business: David Asch...
...2008 The PyCon 2008 budget that D. Goodger had prepared was discussed. The baseline expected attendance is 800 people; the projected sponsorship revenue is $50K; $20K is budgeted for financial aid and $5K for travel for keynote speakers; the projected bottom line is a net loss of $16,522. A. Kuchling expressed doubt at the projected increase in attendance, and noted that at 2007 attendance levels (600 people), the projected loss is over $36K. B. Cannon asked how liberal the budget was. D. Good...
...2 Minutes of Past Meetings The 12 November 2007 Board meeting minutes were approved by a 6-0-1 vote (in favor – opposed – abstentions). 3 Status of Past Action Items (Pending action items appear like this.) 3.1 Carried Forward The following are action items carried forward from the 12 November 2007 meeting, as highlighted in the minutes (Section 3, Status of Past Action Items): Originally from October 2005, Section 4, Public Support Committe...
2012-06-18 & 2012-06-25 PSF Board Meeting Minutes The Python Software Foundation Minutes of a Regular Meeting of the Board of Directors June 18, 2012 & June 25, 2012 A regular meeting of the Python Software Foundation ("PSF") Board of Directors was held over Group Video Calling via Skype and Internet Relay Chat beginning at 16:00 UTC, 18 June 2012 (Part 1) and resumed on 25 June 2012 (Part 2) & again was held over Group Video Calling via Skype and Internet Relay Cha...
...23] Originally from 14 April 2008, Section 5, Treasurer's Report: S. Holden will assist K. Kaiser with accounts receivable reminders. Item passed from S. Holden to P. Campbell on 2008-12-08. Status: active. [15] Originally from 14 April 2008, Section 7, PyCon Asset Record-Keeping: D. Goodger will update the assets file in PSF CVS with the details of the laptops and VGA2USB boxes purchased for PyCon 2008. Status: pending. [16] Originally from 14 April 2008, Section 12, Sponsor Membership Issue...
...2011/2012 PSF Committee Chairs The board re-appointed three committee chairs: RESOLVED, that David Mertz be appointed chairman of the Trademarks Committee for 2011/2012. Approved, 8-0-1. RESOLVED, that Sean Reifschneider be appointed chairman of the Infrastructure Committee for 2011/2012. Approved, 9-0-0. RESOLVED, that Jesse Noller be appointed chairman of the Sprints Committee for 2011/2012. Approved, 8-0-1. 11 Procedures Used to Appointment the 2011/2012 PSF Committee Me...
...2, at least one of issubclass(M1, M2) or issubclass(M2, M1) is always true), you don't have to worry about the metaclass constraint. For example: # Metaclasses class M1(type): ... class M2(M1): ... class M3(M2): ... class M4(type): ... # Regular classes class C1: __metaclass__ = M1 class C2(C1): __metaclass__ = M2 class C3(C1, C2): __metaclass__ = M3 class D(C2, C3): __metaclass__ = M1 class C4: ...
...2.2 Unifying types and classes in Python 2.2 Python Version: 2.2.2 (For a newer version of this tutorial, see Python 2.2.3) Guido van Rossum This paper is an incomplete draft. I am soliciting feedback. If you find any problems, please write me at guido@python.org. Table of Contents Change Log Introduction Subclassing built-in types Built-in types as factory functions Introspecting instances of built-in types Static methods and class methods Properties: a...
...2.1 (#30, Apr 18 2001, 00:47:18) [GCC egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)] on linux2 Type "copyright", "credits" or "license" for more information. >>> [].__methods__ ['append', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort'] >>> >>> dir([]) ['append', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort'] Under the new proposal, the __methods__ attribute no longer exists: Python 2.2c1 (#803, Dec 13 2001, 23:06:05) ...
Version: None
Released: April 9, 2002
Note: This is not the most current Python version. See the download page for a more recent version. On April 8 2002, we're releasing Python 2.1.3 - a bugfix release of Python 2.1. This release has a small number of critical bug fixes. This is the …
View Release Notes
Released: Oct. 14, 2002
Important: This release is vulnerable to the problem described in security advisory PSF-2006-001 "Buffer overrun in repr() of unicode strings in wide unicode builds (UCS-4)". This fix is included in Python 2.4.4 and Python 2.5. If you need to remain with Python 2.2, there's a patch available …
Released: March 16, 2022
This is the third maintenance release of Python 3.10 Python 3.10.3 is the newest major release of the Python programming language, and it contains many new features and optimizations. Major new features of the 3.10 series, compared to 3.9 Among the new major new features and …
Released: Feb. 15, 2024
This is an early developer preview of Python 3.13 Major new features of the 3.13 series, compared to 3.12 Python 3.13 is still in development. This release, 3.13.0a4, is the fourth of six planned alpha releases. Alpha releases are intended to make it easier to test the …
...25, 1996. 1) What's Numerical Python? Here should really go Paul's humorous depiction of Monty's moreserious brother, but I don't have that right now, so the high levelstuff will have to wait. 2) Where do I get it? ftp://sls-ftp.lcs.mit.edu/pub/jjh/NumericalPython-0.36.tar.gz This is the latest version. New versions will be made available atthis location. 3) Is there any documentation? There's incomplete online documentation written by David Ascher for acourse he tau...
...22/1013. This Agreement may also be obtained from a proxy server on the Internet using the following URL: http://hdl.handle.net/1895.22/1013". 3. In the event Licensee prepares a derivative work that is based on or incorporates Python 1.6.1 or any part thereof, and wants to make the derivative work available to others as provided herein, then Licensee hereby agrees to include in any such work a brief summary of the changes made to Python 1.6.1. 4. CNRI is making Python 1.6.1 availab...
If you didn't find what you need, try your search in the Python language documentation.