Python (64-bit)

最新版本 Python 3.11.2 (64-bit)

Python 3.11.2 (64-bit)

Python 3.11.2 (64-bit)
Python 64 位是一種動態的面向對象編程語言,可用於多種軟件開發。它提供了與其他語言和工具集成的強大支持,附帶大量的標準庫,並且可以在幾天內學到。許多 Python 程序員報告大幅提高生產力,並認為語言鼓勵開發更高質量,更易維護的代碼。下載用於 PC 的 Python 離線安裝程序設置 64 位

Python 在 Windows,Linux / Unix,Mac OS X,OS / 2,Amiga,Palm Handhelds 和諾基亞移動電話上運行。 Python 也被移植到 Java 和.NET 虛擬機上。 Python 64 位是在 OSI 認可的開放源代碼許可下發布的,甚至可以用於商業產品.

它的一些關鍵區別特徵包括:非常清晰,可讀的語法強大的內省功能直觀的目標定位程序的自然表達代碼完全模塊化,支持分層程序包基於異常的錯誤處理非常高級別的動態數據類型針對幾乎所有任務的廣泛的標準庫和第三方模塊用 C,C ++(或 Java for Jython 或 IronPython 的.NET 語言)輕鬆編寫的擴展和模塊)作為腳本接口嵌入到應用程序中也可用:下載 Python for Mac

ScreenShot

軟體資訊
檔案版本 Python 3.11.2 (64-bit)

檔案名稱 python-3.11.2.amd64.exe
檔案大小
系統 Windows Vista64 / Windows 7 64 / Windows 8 64 / Windows 10 64
軟體類型 開源軟體
作者 Python Software Foundation
官網 http://www.python.org/
更新日期 2023-02-09
更新日誌

What's new in this version:

Core and Builtins:
-Fix the defs and kwdefs arguments to PyEval_EvalCodeEx() and a reference leak in that function
- Fix wrong lineno in exception message on continue or break which are not in a loop. Patch by Dong-hee Na
- Fix is_normalized() to properly handle the UCD 3.2.0 cases. Patch by Dong-hee Na
- Fix a possible memory leak in the parser when raising MemoryError. Patch by Pablo Galindo
- Fix potential memory underallocation issue for instances of int subclasses with value zero
- Fixed segfault in property.getter/setter/deleter that occurred when a property subclass overrode the __new__ method to return a non-property instance
- Fix race while iterating over thread states in clearing threading.local. Patch by Kumar Aditya
- Fix misleading default value in input()’s __text_signature__
- Fix int.__sizeof__() calculation to include the 1 element ob_digit array for 0 and False
- Update the native_thread_id field of PyThreadState after fork
- Fix incorrect result and delay in socket.getfqdn(). Patch by Dominic Socular
-Initialize frame->previous in frameobject.c to fix a segmentation fault when accessing frames created by PyFrame_New()
- Honor existing errors obtained when searching for mismatching parentheses in the tokenizer. Patch by Pablo Galindo
- bpo-32782: ctypes arrays of length 0 now report a correct itemsize when a memoryview is constructed from them, rather than always giving a value of 0.

Library:
- [Enum] - fix psuedo-flag creation
- Fix regression when passing None as second or third argument to FutureIter.throw.
- Avoid potential unexpected freeaddrinfo call (double free) in socket when when a libc getaddrinfo() implementation leaves garbage in an output pointer when returning an error. Original patch by Sergey G. Brester.
- Remove unused references to TimerHandle in asyncio.base_events.BaseEventLoop._add_callback.
- Make zipfile.Path.open() and zipfile.Path.read_text() also accept encoding as a positional argument. This was the behavior in Python 3.9 and earlier. 3.10 introduced a regression where supplying it as a positional argument would lead to a TypeError.
- Fix typing.get_type_hints() on '*tuple[...]' and *tuple[...]. It must not drop the Unpack part.
- Fix a Windows asyncio bug with named pipes where a client doing os.stat() on the pipe would cause an error in the server that disabled serving future requests
- Modify random.choice() implementation to once again work with NumPy arrays
-Avoid RecursionError on repr if a dataclass field definition has a cyclic reference
- pass encoding kwarg to subprocess in platform
- Fix crash in pyexpat by statically allocating PyExpat_CAPI capsule
- Fix unittest.mock.Mock not respecting the spec for attribute names prefixed with assert
-Fix asyncio.open_connection() to skip binding to local addresses of different family. Patch by Kumar Aditya
- Fix the interaction of unittest.mock.seal() with unittest.mock.AsyncMock
- http.server now checks that an index page is actually a regular file before trying to serve it. This avoids issues with directories named index.html.
- Remove any deprecation warnings in asyncio.get_event_loop(). They are deferred to Python 3.12.
-Fix handling of partial and invalid UNC drives in ntpath.splitdrive(), and in ntpath.normpath() on non-Windows systems. Paths such as ‘server’ and ‘’ are now considered by splitdrive() to contain only a drive, and consequently are not modified by normpath() on non-Windows systems. The behaviour of normpath() on Windows systems is unaffected, as native OS APIs are used. Patch by Eryk Sun, with contributions by Barney Gale.
-Fix crash when creating an instance of _ctypes.CField.
-Fix a reference undercounting issue in ctypes.Structure with from_param() results larger than a C pointer
- Fix regression in asyncio where a subprocess would sometimes lose data received from pipe
- Fix tuple subclasses being cast to tuple when used as enum values
-Update HTTPError to be initialized properly, even if the fp is None. Patch by Dong-hee Na
-Fix inspect.getsource() handling of decorator calls with nested parentheses
-Fix .save() method for LWPCookieJar and MozillaCookieJar: saved file was not truncated on repeated save
-Fix doctest failure on types.MethodWrapperType in modules
-Fix double-free bug in Argument Clinic str_converter by extracting memory clean up to a new post_parsing section
-Fix refcount error when arguments are packed to tuple in Argument Clinic
-Several improvements to inspect.signature()’s handling of __text_signature. - Fixes a case where inspect.signature() dropped parameters - Fixes a case where inspect.signature() raised tokenize.TokenError - Allows inspect.signature() to understand defaults involving binary operations of constants - inspect.signature() is documented as only raising TypeError or ValueError, but sometimes raised RuntimeError. These cases now raise ValueError - Removed a dead code path
-Fix a 3.11 regression in asynccontextmanager(), which caused it to propagate exceptions with incorrect tracebacks and fix a 3.11 regression in contextmanager(), which caused it to propagate exceptions with incorrect tracebacks for StopIteration.
- bpo-44817: Ignore WinError 53 (ERROR_BAD_NETPATH), 65 (ERROR_NETWORK_ACCESS_DENIED) and 161 (ERROR_BAD_PATHNAME) when using ntpath.realpath()
- bpo-40447: Accept os.PathLike (such as pathlib.Path) in the stripdir arguments of compileall.compile_file() and compileall.compile_dir()
- bpo-36880: Fix a reference counting issue when a ctypes callback with return type py_object returns None, which could cause crashes

Documentation:
- Document existing attr parameter to curses.window.vline() function in curses
- Remove claim in documentation that the stripdir, prependdir and limit_sl_dest parameters of compileall.compile_dir() and compileall.compile_file() could be bytes.
-Use sphinxext-opengraph to generate OpenGraph metadata

Tests:
- test_tarfile has been updated to pass when run as a high UID
- Start running SSL tests with OpenSSL 3.1.0-beta1
- Add functional test for Argument Clinic

Build:
- Allow overriding Windows dependencies versions and paths using MSBuild properties

Windows:
- Ensure the install path in the registry is only used when the standard library hasn’t been located in any other way.
- The py.exe launcher now correctly filters when only a single runtime is installed. It also correctly handles prefix matches on tags so that -3.1 does not match 3.11, but would still match 3.1-32.
- Restore ability to launch older 32-bit versions from the py.exe launcher when both 32-bit and 64-bit installs of the same version are available.
-Fixed an issue where writing more than 32K of Unicode output to the console screen in one go can result in mojibake.
- Ensures the PythonPath registry key from an install is used when launching from a different copy of Python that relies on an existing install to provide a copy of its modules and standard library.
- Restores support for the py.exe launcher finding shebang commands in its configuration file using the full command name.
- Update Windows installer to OpenSSL 1.1.1s
- bpo-43984: winreg.SetValueEx() now leaves the target value untouched in the case of conversion errors. Previously, -1 would be written in case of such errors.

Python 3.11.2 (64-bit) 相關參考資料
All Versions of Python (64bit)

Python (64bit) 3.11.4. Jun 7, 202324.25 MB · Download ; Python (64bit) 3.11.3. Apr 6, 202324.17 MB · Download ; Python (64bit) 3.11.2. Feb 9, 202324.15 MB.

https://www.filepuma.com

Download Python 3.11.2 for Windows free

64bit. 06/09/2022. 3.10.7. 32bit. 06/09/2022 · Old versions Python. App is safe ... PE32 executable for MS Windows (GUI) Intel 80386 32-bit. Read more detailed ...

https://downzen.com

Downloading Python 3.11.2 (64-bit) from FileHorse.com

A remarkably powerful dynamic programming language · Python 3.11.2 (64-bit) · Key details about this download. The file will be downloaded from author's ...

https://www.filehorse.com

How to Install Python 3.11.2 on Windows 11 [ 2023 ... - YouTube

https://www.youtube.com

How to Install Python 3.11.2 on Windows 11 [64 bit] - YouTube

https://www.youtube.com

Python 64 bit 3.11.2

2023年2月8日 — Download Python 64 bit 3.11.2 · https://www.python.org/ftp/python/3.11.2/python-3.11.2-amd64.exe · VirusTotal results. Change log: n/a.

https://www.npackd.org

Python Release Python 3.11.2

2023年2月8日 — Python 3.11.2 is the newest major release of the Python programming language, and it contains many new features and optimizations. Major new ...

https://www.python.org

Python Releases for Windows

Note that Python 3.11.2 cannot be used on Windows 7 or earlier. Download Windows embeddable package (32-bit); Download Windows embeddable package (64-bit) ...

https://www.python.org

Python Releases for Windows - Domainunion

Note that Python 3.11.2 cannot be used on Windows 7 or earlier. Download Windows embeddable package (32-bit); Download Windows embeddable package (64-bit) ...

https://python.domainunion.de

Python Windows版本下载| Python中文网官网

Python 3.11.2 - Feb. 8, 2023. 请注意,Python 3.11.2 不能在Windows 7或更早版本 ... 下载Windows 安装程序(64-bit) · Python 3.9.0 - Oct. 5, 2020. 请注意,Python 3.9 ...

https://python.p2hp.com