summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Windows
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2024-04-09 09:52:31 (GMT)
committerThomas Wouters <thomas@python.org>2024-04-09 09:56:22 (GMT)
commit57aee2a02ce38be30cf6c310245547cf56562ab6 (patch)
tree4be715c6136078128daed987a3b0209e18e6abfd /Misc/NEWS.d/next/Windows
parent57183241af76bf33e44d886a733f799d20fc680c (diff)
downloadcpython-57aee2a02ce38be30cf6c310245547cf56562ab6.zip
cpython-57aee2a02ce38be30cf6c310245547cf56562ab6.tar.gz
cpython-57aee2a02ce38be30cf6c310245547cf56562ab6.tar.bz2
Python 3.13.0a6v3.13.0a6
Diffstat (limited to 'Misc/NEWS.d/next/Windows')
-rw-r--r--Misc/NEWS.d/next/Windows/2024-02-08-14-48-15.gh-issue-115119.qMt32O.rst3
-rw-r--r--Misc/NEWS.d/next/Windows/2024-02-24-23-03-43.gh-issue-91227.sL4zWC.rst1
-rw-r--r--Misc/NEWS.d/next/Windows/2024-03-14-01-58-22.gh-issue-116773.H2UldY.rst1
-rw-r--r--Misc/NEWS.d/next/Windows/2024-03-14-09-14-21.gh-issue-88494.Bwfmp7.rst4
-rw-r--r--Misc/NEWS.d/next/Windows/2024-03-14-20-46-23.gh-issue-116195.Cu_rYs.rst1
-rw-r--r--Misc/NEWS.d/next/Windows/2024-03-28-22-12-00.gh-issue-117267.K_tki1.rst5
6 files changed, 0 insertions, 15 deletions
diff --git a/Misc/NEWS.d/next/Windows/2024-02-08-14-48-15.gh-issue-115119.qMt32O.rst b/Misc/NEWS.d/next/Windows/2024-02-08-14-48-15.gh-issue-115119.qMt32O.rst
deleted file mode 100644
index f95fed1..0000000
--- a/Misc/NEWS.d/next/Windows/2024-02-08-14-48-15.gh-issue-115119.qMt32O.rst
+++ /dev/null
@@ -1,3 +0,0 @@
-Switched from vendored ``libmpdecimal`` code to a separately-hosted external
-package in the ``cpython-source-deps`` repository when building the
-``_decimal`` module.
diff --git a/Misc/NEWS.d/next/Windows/2024-02-24-23-03-43.gh-issue-91227.sL4zWC.rst b/Misc/NEWS.d/next/Windows/2024-02-24-23-03-43.gh-issue-91227.sL4zWC.rst
deleted file mode 100644
index 8e53afd..0000000
--- a/Misc/NEWS.d/next/Windows/2024-02-24-23-03-43.gh-issue-91227.sL4zWC.rst
+++ /dev/null
@@ -1 +0,0 @@
-Fix the asyncio ProactorEventLoop implementation so that sending a datagram to an address that is not listening does not prevent receiving any more datagrams.
diff --git a/Misc/NEWS.d/next/Windows/2024-03-14-01-58-22.gh-issue-116773.H2UldY.rst b/Misc/NEWS.d/next/Windows/2024-03-14-01-58-22.gh-issue-116773.H2UldY.rst
deleted file mode 100644
index 8fc3fe8..0000000
--- a/Misc/NEWS.d/next/Windows/2024-03-14-01-58-22.gh-issue-116773.H2UldY.rst
+++ /dev/null
@@ -1 +0,0 @@
-Fix instances of ``<_overlapped.Overlapped object at 0xXXX> still has pending operation at deallocation, the process may crash``.
diff --git a/Misc/NEWS.d/next/Windows/2024-03-14-09-14-21.gh-issue-88494.Bwfmp7.rst b/Misc/NEWS.d/next/Windows/2024-03-14-09-14-21.gh-issue-88494.Bwfmp7.rst
deleted file mode 100644
index 5a96af0..0000000
--- a/Misc/NEWS.d/next/Windows/2024-03-14-09-14-21.gh-issue-88494.Bwfmp7.rst
+++ /dev/null
@@ -1,4 +0,0 @@
-On Windows, :func:`time.monotonic()` now uses the ``QueryPerformanceCounter()``
-clock to have a resolution better than 1 us, instead of the
-``GetTickCount64()`` clock which has a resolution of 15.6 ms. Patch by Victor
-Stinner.
diff --git a/Misc/NEWS.d/next/Windows/2024-03-14-20-46-23.gh-issue-116195.Cu_rYs.rst b/Misc/NEWS.d/next/Windows/2024-03-14-20-46-23.gh-issue-116195.Cu_rYs.rst
deleted file mode 100644
index 32122d7..0000000
--- a/Misc/NEWS.d/next/Windows/2024-03-14-20-46-23.gh-issue-116195.Cu_rYs.rst
+++ /dev/null
@@ -1 +0,0 @@
-Improves performance of :func:`os.getppid` by using an alternate system API when available. Contributed by vxiiduu.
diff --git a/Misc/NEWS.d/next/Windows/2024-03-28-22-12-00.gh-issue-117267.K_tki1.rst b/Misc/NEWS.d/next/Windows/2024-03-28-22-12-00.gh-issue-117267.K_tki1.rst
deleted file mode 100644
index d322142..0000000
--- a/Misc/NEWS.d/next/Windows/2024-03-28-22-12-00.gh-issue-117267.K_tki1.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Ensure ``DirEntry.stat().st_ctime`` behaves consistently with
-:func:`os.stat` during the deprecation period of ``st_ctime`` by containing
-the same value as ``st_birthtime``. After the deprecation period,
-``st_ctime`` will be the metadata change time (or unavailable through
-``DirEntry``), and only ``st_birthtime`` will contain the creation time.