Notice: This page displays a fallback because interactive scripts did not run. Possible causes include disabled JavaScript or failure to load scripts or stylesheets.
Python Software Foundation: Minutes of Board of Directors Meeting (July 12, 2005) The Python Software Foundation Minutes of a Regular Meeting of the Board of Directors July 12, 2005 A regular meeting of the Python Software Foundation (the "PSF") Board of Directors was held over Internet Relay Chat at 17:00 UTC, July 12, 2005. Stephan Deibel presided at the meeting. 1 Attendance The following members of the Board of Directors were present at the meeting: Stephan ...
Grants - Frequently Asked Questions python, grants, psf Considering submitting a grant request to the PSF? Please read this FAQ first. Q. Will the PSF fund swag? A. The PSF does not fund swag production or disbursement. Q. Is there anything I need to know about fund disbursements? A. The PSF offers various payment methods. If your grant request is approved, specific information will be requested in the email notification. Please see our Payment Options page (https://www.python.org/psf/paymento...
2011-06-27 PSF Board Meeting Minutes The Python Software Foundation Minutes of a Regular Meeting of the Board of Directors June 27, 2011 A regular meeting of the Python Software Foundation ("PSF") Board of Directors was held over Internet Relay Chat beginning at 16:00 UTC, 27 June 2011. Steve Holden presided at the meeting. Pat Campbell prepared the minutes. All votes are reported in the form "Y-N-A" (in favor — opposed — abstentions; e.g. "5-1-2" means...
What's new in Python 1.5 and beyond If you download the source release, there's a loooong list of changes since release 1.4 in the file Misc/NEWS. Below are some highlights. (Or go directly to the listings of what's new in 1.5b1, what's new in 1.5b2, and what's new in 1.5 (final).) For an essay on the (difficult!) subject of metaprogramming, see my essay Metaprogramming in Python 1.5. See also the description of some major new features in version 1.5: Built-in Package Support and Stand...
2010-04-12 PSF Board Meeting Minutes The Python Software Foundation Minutes of a Regular Meeting of the Board of Directors April 12, 2010 A regular meeting of the Python Software Foundation ("PSF") Board of Directors was held over Internet Relay Chat beginning at 16:00 UTC, 12 April 2010. Steve Holden presided at the meeting. Pat Campbell prepared the minutes. All votes are reported in the form "Y-N-A" (in favor — opposed — abstentions; e.g. "5-1-2" means &...
2011-12-19 PSF Board Meeting Minutes The Python Software Foundation Minutes of a Regular Meeting of the Board of Directors December 19, 2011 A regular meeting of the Python Software Foundation ("PSF") Board of Directors was held over Internet Relay Chat beginning at 16:00 UTC, 19 December 2011. Steve Holden presided at the meeting. Pat Campbell prepared the minutes. All votes are reported in the form "Y-N-A" (in favor — opposed — abstentions; e.g. ...
Python Success Stories Introduction Gusto.com began as an online travel site under the domain name EZTrip.com which catered to the traveler looking to make online flight, hotel and car reservations. As our customer base grew we started seeing a need to allow our customers to report on their journeys in the form of travel reviews, blogs, sharing photos and other post trip needs. While we've continued to develop and improve our online booking engines and related systems that communicate with...
2011-08-15 PSF Board Meeting Minutes The Python Software Foundation Minutes of a Regular Meeting of the Board of Directors August 15, 2011 A regular meeting of the Python Software Foundation ("PSF") Board of Directors was held over Internet Relay Chat beginning at 16:00 UTC, 15 August 2011. In Steve Holden's absence, David Mertz presided at the meeting. Pat Campbell prepared the minutes. All votes are reported in the form "Y-N-A" (in favor — opposed — abstentions...
Work Groups of the Python Software Foundation Active Work Groups Code of Conduct Work Group Diversity and Inclusion Work Group Education & Outreach Work Group Fellows Work Group Grants Work Group Infrastructure Work Group Python Job Board Work Group Packaging Work Group Trademarks Work Group Inactive Committees & Work Groups Scientific Python Work Group Marketing Work Group Sprint Work Group Public Support Committee (PSC) Public Relations Committee (PRC) Python Conference Committee...
PSF Grants Program The PSF Grants Program is currently paused The PSF Grants Program has been temporarily paused after hitting our 2025 funding cap early. It was an extremely difficult but necessary decision to ensure the program and foundation’s near and long term sustainability. Learn more about the pause and how you can support the PSF’s future in our blog post. PSF Meetup Pro Network Applications Now Open The PSF is pleased to announce that we have reopened the application for Pyth...
2012-02-27 PSF Board Meeting Minutes The Python Software Foundation Minutes of a Regular Meeting of the Board of Directors February 27, 2012 A regular meeting of the Python Software Foundation ("PSF") Board of Directors was held over Internet Relay Chat beginning at 16:00 UTC, 27 February 2012. Steve Holden presided at the meeting. Pat Campbell prepared the minutes. All votes are reported in the form "Y-N-A" (in favor — opposed — abstentions; e.g. ...
2011-05-16 PSF Board Meeting Minutes The Python Software Foundation Minutes of a Regular Meeting of the Board of Directors May 16, 2011 A regular meeting of the Python Software Foundation ("PSF") Board of Directors was held over Internet Relay Chat beginning at 16:00 UTC, 16 May 2011. Steve Holden presided at the meeting. Pat Campbell prepared the minutes. All votes are reported in the form "Y-N-A" (in favor — opposed — abstentions; e.g. "5-1-2" means &...
2011-10-17 PSF Board Meeting Minutes The Python Software Foundation Minutes of a Regular Meeting of the Board of Directors October 17, 2011 A regular meeting of the Python Software Foundation ("PSF") Board of Directors was held over Internet Relay Chat beginning at 16:00 UTC, 17 October 2011. Steve Holden presided at the meeting. Pat Campbell prepared the minutes. All votes are reported in the form "Y-N-A" (in favor — opposed — abstentions; e.g. &q...
2012-01-16 PSF Board Meeting Minutes The Python Software Foundation Minutes of a Regular Meeting of the Board of Directors January 16, 2012 A regular meeting of the Python Software Foundation ("PSF") Board of Directors was held over Internet Relay Chat beginning at 16:00 UTC, 16 January 2012. Steve Holden presided at the meeting. Pat Campbell prepared the minutes. All votes are reported in the form "Y-N-A" (in favor — opposed — abstentions; e.g. &q...
...%d formats for negative Python longs remains the same as in 2.0 (although in 1.6 and before, they raised an error if the long didn't fit in a Python int). %u formats don't make sense for Python longs, but are allowed and treated the same as %d in 2.1. In 2.0, a negative long formatted via %u produced a sign if and only if too large to fit in an int. In 1.6 and earlier, a negative long formatted via %u raised an error if it was too big to fit in an int. Dictionary objects have an odd new metho...
Python Success Stories Introduction The Devil Framework is a multi-platform (Linux, OS X, Windows), multi-user, multi-tier, distributed platform for developing process and technology integration solutions: developers can easily collect, integrate, correlate, control and visualize all information produced and consumed by heterogeneous networked hardware and software technologies. The project started in 1999 as a network security data integration system, but when we "discovered" that...
...%d" % aninstance.method2() Confused already? The intention is to read this from top down. The Tracing class is the metaclass we're defining. Its structure is really simple. The __init__ method is invoked when a new Tracing instance is created, e.g. the definition of class MyTracedClass later in the example. It simply saves the class name, base classes and namespace as instance variables. The __call__ method is invoked when a Tracing instance is called, e.g. the creat...
2020 PSF Annual Report #wrapper { overflow: hidden; position: relative; } .resize-active * { transition: none; } h1, .h1 { line-height: 34px; margin-bottom: 27px; } h2, .h2 { color: #3776ab; line-height: 26px; display: block; } p, blockquote, time, em { line-height: 28px; } time { font-style: italic; } p { margin-bottom: 24px; text-align: justify; } a { transition: color 0.3s ease-in-out; text-decoration: none; } .section-head...
...%d,i,u,x,X,o formats; for example "%d" % 2L**64 == "18446744073709551616". Add -h and -V command line options to print the usage message and Python version number and exit immediately. eval() and exec accept Unicode objects as code parameters. getattr() and setattr() now also accept Unicode objects for the attribute name, which are converted to strings using the default encoding before lookup. Multiplication on string and Unicode now does proper bounds checking; e.g. '...
...%default" in an option's help string is expanded to str() of that option's default value, or "none" if no default value. Bug #955889: option default values that happen to be strings are now processed in the same way as values from the command line; this allows generation of nicer help when using custom types. Can be disabled with parser.set_process_default_values(False). Bug #960515: don't crash when generating help for callback options that specify 'type', but not 'dest' or 'met...
If you didn't find what you need, try your search in the Python language documentation.