summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_platform.py
Commit message (Expand)AuthorAgeFilesLines
* gh-114099: Additions to standard library to support iOS (GH-117052)Russell Keith-Magee2024-03-281-0/+69
* gh-71042: Add `platform.android_ver` (#116674)Malcolm Smith2024-03-271-0/+50
* gh-116491: Improve `test_win32_ver` (#116506)Nikita Sobolev2024-03-131-1/+29
* gh-116349: Deprecate `platform.java_ver` function (#116471)Nikita Sobolev2024-03-081-3/+7
* gh-114099: Add test exclusions to support running the test suite on iOS (#114...Russell Keith-Magee2024-02-051-1/+2
* gh-102491: Remove IronPython version check in sys_version (#102492)Pieter Eendebak2023-03-191-17/+7
* gh-99482: remove `jython` compatibility parts from stdlib and tests (#99484)Nikita Sobolev2022-12-231-1/+1
* gh-97966: Restore prior expectation that uname_result._fields and ._asdict wo...Jason R. Coombs2022-11-261-0/+8
* gh-89545: Updates platform module to use new internal _wmi module on Windows ...Steve Dower2022-09-071-13/+28
* bpo-40280: Skip socket, fork, subprocess tests on Emscripten (GH-31986)Christian Heimes2022-03-221-0/+1
* bpo-40280: Skip subprocess-based tests on wasm32-emscripten (GH-30615)Christian Heimes2022-01-251-0/+2
* bpo-42163, bpo-42189, bpo-42659: Support uname_tuple._replace (for all but pr...Jason R. Coombs2020-12-311-0/+34
* bpo-28468: Add platform.freedesktop_os_release() (GH-23492)Christian Heimes2020-11-301-0/+106
* bpo-41100: in test_platform, ignore 10.16 (GH-23485)Ned Deily2020-11-241-1/+4
* bpo-41100: Support macOS 11 and Apple Silicon (GH-22855)Ronald Oussoren2020-11-081-1/+1
* bpo-40275: Use new test.support helper submodules in tests (GH-21764)Hai Shi2020-08-071-1/+1
* bpo-40275: Use new test.support helper submodules in tests (GH-20849)Hai Shi2020-06-251-3/+4
* bpo-40570: Improve compatibility of uname_result with late-bound .platform (#...Jason R. Coombs2020-05-091-0/+15
* bpo-40443: Remove unused imports in tests (GH-19805)Victor Stinner2020-04-291-1/+0
* bpo-35967: Skip test with `uname -p` on Android (GH-19577)Chih-Hsuan Yen2020-04-181-2/+5
* bpo-35967 resolve platform.processor late (GH-12239)Jason R. Coombs2020-04-161-7/+2
* bpo-35967: Make test_platform.test_uname_processor more lenient to satisfy bu...Jason R. Coombs2020-04-151-4/+6
* bpo-35967: Baseline values for uname -p (GH-12824)Jason R. Coombs2020-04-151-0/+14
* bpo-40094: Add test.support.wait_process() (GH-19254)Victor Stinner2020-03-311-3/+1
* Remove unused imports in tests (GH-14518)Victor Stinner2019-07-011-2/+1
* bpo-37369: Fix initialization of sys members when launched via an app contain...Steve Dower2019-06-291-31/+8
* bpo-35346, platform: replace os.popen() with subprocess (GH-10786)Victor Stinner2018-12-071-9/+9
* bpo-35344: platform.platform() uses mac_ver() on macOS (GH-10780)Victor Stinner2018-12-051-0/+33
* bpo-35389: platform.libc_ver() uses os.confstr() (GH-10891)Victor Stinner2018-12-051-6/+35
* bpo-35345: Remove platform.popen() (GH-10781)Victor Stinner2018-11-291-33/+0
* bpo-35202: Remove unused imports in tests. (GH-10561)Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి)2018-11-161-1/+0
* bpo-34011: Fixes missing venv files and other tests (GH-9458)Steve Dower2018-09-201-15/+21
* bpo-26544: Add test for platform._comparable_version(). (GH-8973)Serhiy Storchaka2018-09-041-0/+36
* bpo-26544: Fixed implementation of platform.libc_ver(). (GH-7684)Serhiy Storchaka2018-07-091-1/+7
* Revert "bpo-33671: Add support.MS_WINDOWS and support.MACOS (GH-7800)" (GH-7919)Victor Stinner2018-06-261-2/+4
* bpo-33671: Add support.MS_WINDOWS and support.MACOS (GH-7800)Victor Stinner2018-06-221-4/+2
* bpo-28167: Remove platform.linux_distribution (GH-6871)Petr Viktorin2018-05-161-65/+0
* bpo-28167: bump platform.linux_distribution removal to 3.8 (GH-6669)Matthias Bussonnier2018-05-151-2/+2
* bpo-32159: Remove tools for CVS and Subversion (#4615)Victor Stinner2017-11-281-3/+3
* bpo-27593: Get SCM build info from git instead of hg. (#446)Ned Deily2017-03-041-6/+6
* Closes #28059: Fixes test_platform to set PYTHONPATH for .pyd filesSteve Dower2016-09-101-2/+3
|\
| * Closes #28059: Fixes test_platform to set PYTHONPATH for .pyd filesSteve Dower2016-09-101-2/+9
* | test_platform: Save/restore os.environ on WindowsVictor Stinner2016-09-101-0/+7
* | #27364: fix "incorrect" uses of escape character in the stdlib.R David Murray2016-09-081-2/+2
|/
* Issue #21313: Tolerate truncated buildinfo in sys.versionMartin Panter2016-06-081-0/+16
* Issue #26041: Remove "will be removed in Python 3.7" from description messagesBerker Peksag2016-04-241-4/+2
* Issue #24210: Silence more PendingDeprecationWarning warnings in tests.Berker Peksag2015-05-161-2/+16
* Issue #1322: platform.dist() and platform.linux_distribution() functions are ...Berker Peksag2015-05-131-5/+19
* - Issue #21539: Add a *exists_ok* argument to `Pathlib.mkdir()` to mimicBarry Warsaw2014-08-051-1/+1
* Issue #17429: Oops, remove unused importVictor Stinner2013-12-081-1/+0