summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Tests/2019-03-08-12-53-37.bpo-36234.NRVK6W.rst
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-03-11 12:57:53 (GMT)
committerGitHub <noreply@github.com>2019-03-11 12:57:53 (GMT)
commit876e82b4f32075e1bd21750bf852a103035fce23 (patch)
tree7619eb0c7c15f08941d4d8627e385a383433c054 /Misc/NEWS.d/next/Tests/2019-03-08-12-53-37.bpo-36234.NRVK6W.rst
parentcc353a0cd95d9b0c93ed0b60ba762427a94c790d (diff)
downloadcpython-876e82b4f32075e1bd21750bf852a103035fce23.zip
cpython-876e82b4f32075e1bd21750bf852a103035fce23.tar.gz
cpython-876e82b4f32075e1bd21750bf852a103035fce23.tar.bz2
bpo-36234: Add more tests to PosixUidGidTests (GH-12234)
test_posix.PosixUidGidTests: * Add tests for invalid uid/gid type (str) * Add UID_OVERFLOW and GID_OVERFLOW constants to replace (1 << 32) Initial patch written by David Malcolm. Co-Authored-By: David Malcolm <dmalcolm@redhat.com>
Diffstat (limited to 'Misc/NEWS.d/next/Tests/2019-03-08-12-53-37.bpo-36234.NRVK6W.rst')
-rw-r--r--Misc/NEWS.d/next/Tests/2019-03-08-12-53-37.bpo-36234.NRVK6W.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2019-03-08-12-53-37.bpo-36234.NRVK6W.rst b/Misc/NEWS.d/next/Tests/2019-03-08-12-53-37.bpo-36234.NRVK6W.rst
new file mode 100644
index 0000000..33178b6
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2019-03-08-12-53-37.bpo-36234.NRVK6W.rst
@@ -0,0 +1,2 @@
+test_posix.PosixUidGidTests: add tests for invalid uid/gid type (str).
+Initial patch written by David Malcolm.