473,604 Members | 2,487 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

RELEASED Python 2.3.1

On behalf of the Python development team and the Python community, I'm
happy to announce the release of Python 2.3.1 (final).

Python 2.3.1 is a pure bug fix release of Python 2.3, released in late
July. A number of obscure crash-causing bugs have been fixed, various
memory leaks have been squished, but no new features have been added to
the language or to the library.

For more information on Python 2.3.1, including download links for
various platforms, release notes, and known issues, please see:

http://www.python.org/2.3.1

Highlights of this new release include:

- Bugfixes

- The Windows installer now ships with documentation in searchable
htmlhelp format, rather than individual HTML files.

Highlights of the previous major Python release (2.3) are available
from the Python 2.3 page, at

http://www.python.org/2.3/highlights.html

This release was the work of a number of dedicated python-dev folks who
took the time to apply bugfixes back to the 2.3 code. The community owes
them many thanks for this work.

Enjoy the new release,
Anthony

Anthony Baxter
an*****@python. org
Python 2.3.1 Release Manager
(on behalf of the entire python-dev team)

Jul 18 '05 #1
38 2867
Anthony Baxter wrote:

On behalf of the Python development team and the Python community, I'm
happy to announce the release of Python 2.3.1 (final).


The highlights mention the existence of a new API PyThreadState_S etAsyncEnc,
which is "deliberate ly accessible only from C", that can interrupt a thread
by sending it an exception.

I can't find an online discussion of this, so I'm asking here. Why was this
made accessible only from C? Is it dangerous? Experimental? Someone feels
it will be used inappropriately if too readily available at the Python level?

Presumably somebody will come up with a little extension module or other
technique for calling this which will let anyone use it at will, so I'm unclear
on why it should be made inaccessible from Python.

-Peter
Jul 18 '05 #2
| ...
| The Windows installer now ships with documentation
| in searchable htmlhelp format, rather than individual
| HTML files.
| ...

Is the htmlhelp format optional for Windows ???

Sometimes I like to edit the individual HTML docs ....

--
Cousin Stanley
Human Being
Phoenix, Arizona

Jul 18 '05 #3
"Cousin Stanley" <Co***********@ hotmail.com> writes:
| ...
| The Windows installer now ships with documentation
| in searchable htmlhelp format, rather than individual
| HTML files.
| ...

Is the htmlhelp format optional for Windows ???

Sometimes I like to edit the individual HTML docs ....


You can download the HTML docs separately, or decompile the .chm back
to HTML. See recent threads about this.
John
Jul 18 '05 #4
"Cousin Stanley" <Co***********@ hotmail.com> writes:
| ...
| The Windows installer now ships with documentation
| in searchable htmlhelp format, rather than individual
| HTML files.
| ...

Is the htmlhelp format optional for Windows ???

Sometimes I like to edit the individual HTML docs ....


There's a checkbox which you can uncheck to disable installing the
htmlhelp file. Then you can download the HTML archive and install it
manually.

Thomas
Jul 18 '05 #5
Hi,

Sometimes, it is find of nice using:
print >> my_file_object, my_variabels
than using the standard f.write.
However, it cannot be done with pprint.pprint.
I understand that i can do it by redirecting the sys.stdout, but isn't
it nice if I can do something like pprint.pprint >> my_file_object,
my_dictionary?

BTW, the syntax
print >> my_file_object, my_variables
seems a bit awkward to me.
Isn't it better if we can simply use:
print *whatever_this_ is >> my _file_object
just like the way we do in unix shell?

-shuhsien
Jul 18 '05 #6
"Anthony Baxter" <an*****@interl ink.com.au> schrieb im Newsbeitrag
news:ma******** *************** ***********@pyt hon.org...
| On behalf of the Python development team and the Python community, I'm
| happy to announce the release of Python 2.3.1 (final).

Than why does the documentation (at least the Windows CHM-one) repeat the
claim:

"Release 2.4a0, documentation updated on 23 September 2003." on each page!

;)

Vincent Wehren

Jul 18 '05 #7
| The Windows installer now ships with documentation
| in searchable htmlhelp format, rather than individual
| HTML files.
| ...

Is the htmlhelp format optional for Windows ???

Sometimes I like to edit the individual HTML docs ....


Yes, you can still download the individual HTML files at:
http://www.python.org/ftp/python/doc/2.3.1/
Raymond Hettinger
Jul 18 '05 #8
Shu-Hsien Sheu wrote:

Sometimes, it is find of nice using:
print >> my_file_object, my_variabels
than using the standard f.write.
However, it cannot be done with pprint.pprint.


I suspect you are looking for either the second argument to pprint(),
or pprint.pformat( ) instead.

pprint.pprint(m y_variables, my_file_object)

or

print >>my_file_objec t, pprint.pformat( my_variables)

-Peter
Jul 18 '05 #9

Shu-Hsien> Sometimes, it is find of nice using: print >> my_file_object,
Shu-Hsien> my_variabels than using the standard f.write. However, it
Shu-Hsien> cannot be done with pprint.pprint.

Actually, yes you can. Pprint.pprint() takes an optional second argument
which specifies the stream to write to. It defaults to sys.stdout.

Skip

Jul 18 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1286
by: Bryan J Gudorf | last post by:
Python Database Objects 1.1.0 has been released. This fairly stable test release includes support for various databases through the mxODBC module. This release also adds more functionality through commands such as move and moveto, which allow for more dynamic movement through a recordset. As we move forward in the 1.1 series we will be adding support for more databases. Community support and feedback is appreciated so that we can make...
1
2572
by: Thomas Heller | last post by:
ctypes 0.9.1 released - Sept 14, 2004 ===================================== Overview ctypes is a ffi (Foreign Function Interface) package for Python 2.3 and higher. ctypes allows to call functions exposed from dlls/shared libraries and has extensive facilities to create, access and manipulate
19
2486
by: Thomas Heller | last post by:
ctypes 0.9.2 released - Oct 28, 2004 ==================================== Overview ctypes is a ffi (Foreign Function Interface) package for Python 2.3 and higher. ctypes allows to call functions exposed from dlls/shared libraries and has extensive facilities to create, access and manipulate
0
1599
by: Michael Sparks | last post by:
Kamaelia 0.1.2 has been released! What is it? =========== Kamaelia is a collection of Axon components designed for network protocol experimentation in a single threaded, select based environment. Axon components are python generators are augmented by inbox and outbox queues (lists) for communication in a communicating sequential processes (CSP) like fashion.
8
1402
by: Luis M. Gonzalez | last post by:
IronPython 0.9 Released(8/2/2005 10:28:41 AM) http://www.microsoft.com/downloads/details.aspx?familyid=cf5ae627-5df1-4f8a-ba8b-d64f0676f43f&displaylang=en
4
2160
by: Michael | last post by:
Hi! (OK, slightly silly subject line :) I'm extremely pleased to say - Kamaelia 0.4.0 has been released! What's New & Changed? =====================
0
1200
by: Anthony Baxter | last post by:
On behalf of the Python development team and the Python community, I'm announcing the release of Python 2.3.6 (release candidate 1). Python 2.3.6 is a security bug-fix release. While Python 2.5 is the latest version of Python, we're making this release for people who are still running Python 2.3. Unlike the recently released 2.4.4, this release only contains a small handful of security-related bugfixes. See the website for more.
0
257
by: Anthony Baxter | last post by:
On behalf of the Python development team and the Python community, I'm happy to announce the release of Python 2.3.6 (FINAL). Python 2.3.6 is a security bug-fix release. While Python 2.5 is the latest version of Python, we're making this release for people who are still running Python 2.3. Unlike the recently released 2.4.4, this release only contains a small handful of security-related bugfixes. See the website for more.
0
1147
by: Guido van Rossum | last post by:
python-list@python.org] The first Python 3000 release is out -- Python 3.0a1. Be the first one on your block to download it! http://python.org/download/releases/3.0/ Excerpts: Python 3000 (a.k.a. "Py3k", and released as Python 3.0) is a new
16
1694
by: =?ISO-8859-1?Q?=22Martin_v=2E_L=F6wis=22?= | last post by:
On behalf of the Python development team and the Python community, I'm happy to announce the release of Python 2.5.2 (release candidate 1). This is the second bugfix release of Python 2.5. Python 2.5 is now in bugfix-only mode; no new features are being added. According to the release notes, over 100 bugs and patches have been addressed since Python 2.5.1, many of them improving the stability of the interpreter, and improving its...
0
7929
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8409
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8065
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
6739
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
5882
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5441
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
3907
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
3955
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1266
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.