Notice: While JavaScript is not essential for this website, your interaction with the content will be limited. Please turn JavaScript on for the full experience.
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...
Version: None
Released: Oct. 1, 2024
This is the third release candidate of Python 3.13.0 This release, 3.13.0rc3, is the final release preview (no really) of 3.13. This release is expected to become the final 3.13.0 release, barring any critical bugs being discovered. The official release of 3.13.0 is now scheduled for Monday, 2024-10-07. This …
View Release Notes
...multi-threaded. Neither Perl nor Java was chosen as the solution at the time. Perl was not considered to be as robust. Java did not allow control over the core interpreter. The language was subject to the quirks of the particular Java Runtime Environment (JRE) installed on each system. Although a JRE could have been bundled with the product, it would have substantially bloated the size of the download. Python reference counting was found to be superior to Java garbage collection, especially in a...
Python Software Foundation: Press Release 3-Oct-2003 October 3, 2003 Press Release SOURCE: Python Software Foundation PYTHON SOFTWARE FOUNDATION (PSF) ANNOUNCES PYTHON VERSION 2.3.2 Second maintenance release for the latest Python FREDERICKSBURG, Va., October 3, 2003 -- The Python Software Foundation (PSF) announces the release of version 2.3.2 of the Python programming language. This minor release fixes several build and packaging problems found in version 2.3.1, which introduced ...
Python Software Foundation: Press Release 22-Oct-2002 Python Software Foundation (PSF) Announces Python Version 2.2.2 New release enhances powerful programming language FREDERICKSBURG, Va., October 22 /PRNewswire/ The Python Software Foundation announces the release of version 2.2.2 of the Python programming language. This Maintenance Release introduces a number of enhancements to the language core and its standard libraries. "This release is an invaluable upgrade for all Py...
...multi-threaded and is scheduled by cron to run every 2 hours. The web application is responsible for interacting with the user and presenting them with the previously fetched RSS documents according to their interest and time of previous visit. This part of DevNet was written using the Quixote web development framework and simpleTAL for generating HTML from templates. It is a 3-tiered application, with application logic implemented in lib.py and the user interface in web.py. The code in web.p...
Python Software Foundation: Press Release 27-Dec-2004 December 27, 2004 Press Release SOURCE: Python Software Foundation PYCON 2005 - THIRD ANNUAL PYTHON DEVELOPERS CONFERENCE Keynote Speech by Jim Hugunin, author of IronPython. FREDERICKSBURG, Va., December 27, 2004 -- PyCon 2005, the third annual Python developers' conference, will be held at George Washington University's Cafritz Conference Center in Washington DC on March 23-25, 2005. The keynote speaker will be Jim Huguni...
Highlights: Python 2.4 Highlights: Python 2.4 Here are the (subjective) highlights of what's new in Python 2.4. Faster A number of modules that were added in Python 2.3 (such as sets and heapq) have been recoded in C. In addition, there's been a number of other speedups to the interpreter. (See section 8.1, Optimizations, of the "What's New" document for more). New language features multi-line imports - when using imports in the form from foo import bar, baz, bing, bang, you c...
Python Software Foundation: Press Release 13-Feb-2003 Creators of Python Sponsor PyCon 2003, First Annual Developers Conference in March FREDERICKSBURG, VA, February 13, 2003 No, it's not a snake or the name of a British comedy group. Python is one of the most useful, compelling and intelligently designed programming platforms to have emerged into the computer industry mainstream in recent years. It is rapidly gaining wide acceptance and being deployed in major IT shops around the wor...
Python Software Foundation: Press Release 9-Feb-2004 February 9, 2004 Press Release SOURCE: Python Software Foundation PyCon 2004 - Second Annual Python Developers Conference Keynote Speech by Mitchell Kapor, founder of Lotus FREDERICKSBURG, Va., February 9, 2004 -- PyCon 2004, the second annual Python developers conference, will be held at George Washington University's Cafritz Conference Center in Washington DC on March 24-26, 2004. Mitchell Kapor, founder of Lotus Development Co...
Python Success Stories Background The Molecular Modeling Toolkit (MMTK) is a open source Python library for molecular modeling and simulation with a focus on biomolecular systems, written in a mixture of Python and C. It provides standard techniques such as Molecular Dynamics or normal mode calculations in a ready-to-use form, but also provides a basis of low-level operations on top of which new techniques can easily be implemented. I started developing MMTK in 1996. I had some experience wit...
Python Software Foundation: Press Release 29-Jul-2003 July 29, 2003 Press Release SOURCE: Python Software Foundation PYTHON SOFTWARE FOUNDATION (PSF) ANNOUNCES PYTHON VERSION 2.3 New release enhances powerful programming language FREDERICKSBURG, Va., July 29, 2003 -- The Python Software Foundation (PSF) announces the release of version 2.3 of the Python programming language. This major release introduces performance enhancements, increased robustness, several minor language feature...
Notes Python 2.1.3 Release Notes Release date: 08-April-2002 What's new in Python 2.1.3 (final)? Core Fixed two bugs reported as SF #535905: under certain conditions, deallocating a deeply nested structure could cause a segfault in the garbage collector, due to interaction with the "trashcan" code; access to the current frame during destruction of a local variable could access a pointer to freed memory. SF #457466: popenx() argument mangling hangs python (win9x only). Under certa...
...multi-threaded applications. What's New in Python 2.3.2c1? Release date: 30-Sep-2003 Build A bug in the autoconf machinery meant that os.fsync was never available. A bug in autoconf meant a bunch of symbols were undefined on HP/UX. Mac The Framework build now identifies itself as 2.3.2. What's New in Python 2.3.1? Release date: 23-Sep-2003 Core and builtins Patch #805613: Fix usage of the PTH library. Fixed a bug in the cache of length-one Unicode strings that could lead to a seg...
...multi-threaded applications which try to be highly responsive, response time will increase by some (perhaps imperceptible) amount. When multiplying very large integers, a version of the so-called Karatsuba algorithm is now used. This is most effective if the inputs have roughly the same size. If they both have about N digits, Karatsuba multiplication has O(N**1.58) runtime (the exponent is log_base_2(3)) instead of the previous O(N**2). Measured results may be better or worse than that, depe...
PSF Board Resolutions The Python Software Foundation Resolutions of the Board of Directors Vote counts are of the form "4-2-1" (4 in favor — 2 opposed — 1 abstention) RESOLVED, that the Python Software Foundation Board of Directors grant $4000 USD to the three events for Python Programmes in Abraka taking place in Abraka, Nigeria, in 2025. Approved; 10-0-0, 2025-07-16 RESOLVED, that the Python Software Foundation Board of Directors grant $4500 USD to the three PyLadies Kampala w...
What's New In Python 3.0 (editors: check NEWS.help for information about editing NEWS using ReST.) What's New in Python 3.0 final Release date: 03-Dec-2008 Core and Builtins Issue #3996: On Windows, the PyOS_CheckStack function would cause the interpreter to abort ("Fatal Python error: Could not reset the stack!") instead of throwing a MemoryError. Issue #3689: The list reversed iterator now supports __length_hint__ instead of __len__. Behavior now matches other reversed ite...
If you didn't find what you need, try your search in the Python language documentation.