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.
...socket to 127.0.0.1 (the local machine). Some firewalls running on Windows machines interfere with this and can cause either silent failures or erroneous popup windows from the firewall. This problem only occurs if you run a firewall on the same machine as IDLE. The test for the ossaudiodev module hangs on some Red Hat systems. (This test is only run when regrtest.py is invoked with -u audio as argument.) It has been reported that untarring the source tarball using Solaris tar can fail. Thi...
Bugs in Python 2.3.4 IDLE now executes code in a separate process. To communicate between the main process and executing processes, IDLE opens a socket to 127.0.0.1 (the local machine). Some firewalls running on Windows machines interfere with this and can cause either silent failures or erroneous popup windows from the firewall. This problem only occurs if you run a firewall on the same machine as IDLE. Build bugs Some platforms require some tinkering to get a clean build of Python. So...
...SocketServer.ThreadingMixIn [ #417943 ] xreadlines documented twice for file obj [ #418296 ] WinMain.c should use WIN32_LEAN_AND_MEAN. [ #418615 ] regular expression bug in pipes.py. [ #418977 ] Access Violation in PyCell_Set [ #419434 ] Tutorial contains wrong sample code. [ #419873 ] ThreadingTCPServer invalidating sockets [ #420216 ] bad links in v2.1 docs [ #420230 ] fileinput deletes backups without warnin [ #420343 ] SystemError from tuple() builtin [ #420399 ] wrong HTML ("trademark&...
...socket to 127.0.0.1 (the local machine). Some firewalls running on Windows machines interfere with this and can cause either silent failures or erroneous popup windows from the firewall. This problem only occurs if you run a firewall on the same machine as IDLE.</li> </ul> <a name="build"><h4>Build bugs</h4></a> <p>Some platforms require some tinkering to get a clean build of Python. These bugs were all discovered at a point where it was too ...
...socket module has a new exception, socket.timeout, to allow timeouts to be handled separately from other socket errors. SF bug 751276: cPickle has fixed to propagate exceptions raised in user code. In earlier versions, cPickle caught and ignored any exception when it performed operations that it expected to raise specific exceptions like AttributeError. cPickle Pickler and Unpickler objects now participate in garbage collection. mimetools.choose_boundary() could return duplicate strings at time...
...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 precision is lost (on all current hardware). ...
...socket interface. And the Package Index has yet more libraries: Requests, a powerful HTTP client library. Beautiful Soup, an HTML parser that can handle all sorts of oddball HTML. Feedparser for parsing RSS/Atom feeds. Paramiko, implementing the SSH2 protocol. Twisted Python, a framework for asynchronous network programming. Scientific and Numeric Python is widely used in scientific and numeric computing: SciPy is a collection of packages for mathematics, science, and engineering. Pandas i...
...socket to 127.0.0.1 (the local machine). Some firewalls running on Windows machines interfere with this and can cause either silent failures or erroneous popup windows from the firewall. This problem only occurs if you run a firewall on the same machine as IDLE.</li> <li>The test for the ossaudiodev module hangs on some Red Hat systems. (This test is only run when regrtest.py is invoked with <code>-u audio</code> as argument.)</li> <li>It has been reported ...
Version: None
Released: Sept. 6, 2024
This is a security release of Python 3.9 Note: The release you're looking at is Python 3.9.20, a security bugfix release for the legacy 3.9 series. Python 3.12 is now the latest feature release series of Python 3. Get the latest release of 3.12.x here. Security content in this …
View Release Notes
This is a security release of Python 3.8 Note: The release you're looking at is Python 3.8.20, a security bugfix release for the legacy 3.8 series. Python 3.12 is now the latest feature release series of Python 3. Get the latest release of 3.12.x here. Security content in this …
Released: Sept. 7, 2024
This is a security release of Python 3.10 Note: The release you're looking at is Python 3.10.15, a security bugfix release for the legacy 3.10 series. Python 3.12 is now the latest feature release series of Python 3. Get the latest release of 3.12.x here. Security content in this …
This is a security release of Python 3.11 Note: The release you're looking at is Python 3.11.10, a security bugfix release for the legacy 3.11 series. Python 3.12 is now the latest feature release series of Python 3. Get the latest release of 3.12.x here. Security content in this …
...socketmodule.c might fail to compile with an error about INET_ADDRSTRLEN. A <a href="sgi-socketmodule.patch">patch</a> for this is here. </ul> <a name="test"><h4>Test suite bugs</h4></a> <p>Some tests may unexpectedly fail on certain platforms. Here are failures that we know (something) about and intend to fix in a following patch release. These bugs may simply be in the test suite, but they may indicate bugs in Python. <...
...sockets. operator.isMappingType() and operator.isSequenceType() now give fewer false positives. socket.sslerror is now a subclass of socket.error . Also added socket.error to the socket module's C API. Bug #920575: A problem where the _locale module segfaults on nl_langinfo(ERA) caused by GNU libc's illegal NULL return is fixed. array objects now support the copy module. Also, their resizing scheme has been updated to match that used for list objects. This improves the performance (speed and ...
...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 precision is lost (on all current hardware). The -X option is gone. B...
...sockets. SunOS 4.1.4_JL: Fix test for directory existence in configure. Tools and other miscellany Removed debugging prints from main used with freeze. IDLE auto-indent no longer crashes when it encounters Unicode characters. What's new in 2.0 beta 2 (since beta 1)? Core language, builtins, and interpreter Add support for unbounded ints in %d,i,u,x,X,o formats; for example "%d" % 2L**64 == "18446744073709551616". Add -h and -V command line options to...
If you didn't find what you need, try your search in the Python language documentation.