| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | [3.7] bpo-36766: Typos in docs and code comments (GH-13116). (GH-13136) | penguindustin | 2019-05-06 | 1 | -1/+1 |
| | | | | | | | | | | | | (cherry picked from commit 964663089547ca110199e23867b46b07ff4be88c) Co-authored-by: penguindustin <penguindustin@gmail.com> https://bugs.python.org/issue36766 | ||||
| * | Fixes platform.win32_ver on non-Windows platforms (GH-12912) | Miss Islington (bot) | 2019-04-22 | 1 | -12/+12 |
| | | | | | | (cherry picked from commit d307d05350e26a7a5f8f74db9af632a15215b50f) Co-authored-by: Steve Dower <steve.dower@microsoft.com> | ||||
| * | bpo-27903: Fix ResourceWarning in platform.dist() (GH-10792) | Victor Stinner | 2018-11-29 | 1 | -17/+19 |
| | | | | | | | Fix ResourceWarning in platform.dist() and platform.linux_distribution() on SuSE and Caldera OpenLinux. Patch by Ville Skyttä. | ||||
| * | [3.7] bpo-26544: Get rid of dependence from distutils in platform. ↵ | Serhiy Storchaka | 2018-09-04 | 1 | -1/+30 |
| | | | | | | | (GH-8356). (GH-8970) (cherry picked from commit 7d81e8f5995df6980a1a02923e224a481375f130) | ||||
| * | [3.7] bpo-26544: Fixed implementation of platform.libc_ver(). (GH-7684). ↵ | Serhiy Storchaka | 2018-07-09 | 1 | -11/+13 |
| | | | | | | | (GH-8193) (cherry picked from commit 2a9b8babf0d09946ebebfdb2931cc0d3db5a1d3d) | ||||
| * | bpo-28167: bump platform.linux_distribution removal to 3.8 (GH-6669) (GH-6862) | Miss Islington (bot) | 2018-05-15 | 1 | -3/+3 |
| | | | | | | | Also bump PendingDeprecationWarning to DeprecationWarning. (cherry picked from commit 9eb40bc38de83e6ad3fad1931bba1cd36ae88c24) Co-authored-by: Matthias Bussonnier <bussonniermatthias@gmail.com> | ||||
| * | bpo-32159: Remove tools for CVS and Subversion (#4615) | Victor Stinner | 2017-11-28 | 1 | -5/+2 |
| | | | | | | | | | | | CPython migrated from CVS to Subversion, to Mercurial, and then to Git. CVS and Subversion are not more used to develop CPython. * platform module: drop support for sys.subversion. The sys.subversion attribute has been removed in Python 3.3. * Remove Misc/svnmap.txt * Remove Tools/scripts/svneol.py * Remove Tools/scripts/treesync.py | ||||
| * | bpo-27593: Get SCM build info from git instead of hg. (#446) | Ned Deily | 2017-03-04 | 1 | -1/+3 |
| | | | | | | | | sys.version and the platform module python_build(), python_branch(), and python_revision() functions now use git information rather than hg when building from a repo. Based on original patches by Brett Cannon and Steve Dower. | ||||
| * | bpo-27788 : synchronise platform.py version number (#246) | Matthias Bussonnier | 2017-02-24 | 1 | -1/+1 |
| | | | | | Was bumped in the docstring by b9f4feab1b9c9ffa8ea29af3d82bc536f9f3005a but not in `__version__` | ||||
| * | Issue #27932: Prevent memory leak in win32_ver(). | Steve Dower | 2016-09-18 | 1 | -60/+1 |
| | | |||||
| * | Merge from 3.5 | Steve Dower | 2016-09-10 | 1 | -33/+29 |
| |\ | |||||
| | * | Issue #27932: Backs out change | Steve Dower | 2016-09-10 | 1 | -33/+29 |
| | | | |||||
| * | | Issue #27932: Fixes memory leak in platform.win32_ver() | Steve Dower | 2016-09-10 | 1 | -29/+33 |
| |\ \ | |/ | |||||
| | * | Issue #27932: Fixes memory leak in platform.win32_ver() | Steve Dower | 2016-09-10 | 1 | -29/+33 |
| | | | |||||
| * | | Issue #26513: Fixes platform module detection of Windows Server | Steve Dower | 2016-09-09 | 1 | -1/+1 |
| |\ \ | |/ | |||||
| | * | Issue #26513: Fixes platform module detection of Windows Server | Steve Dower | 2016-09-09 | 1 | -1/+1 |
| | | | |||||
| * | | #27364: fix "incorrect" uses of escape character in the stdlib. | R David Murray | 2016-09-08 | 1 | -17/+17 |
| | | | | | | | | | | | | | | | And most of the tools. Patch by Emanual Barry, reviewed by me, Serhiy Storchaka, and Martin Panter. | ||||
| * | | Issue #27355: Removed support for Windows CE. It was never finished, | Larry Hastings | 2016-09-05 | 1 | -1/+0 |
| |/ | | | | and Windows CE is no longer a relevant platform for Python. | ||||
| * | Issue #27626: Spelling fixes in docs, comments and internal names | Martin Panter | 2016-07-28 | 1 | -1/+1 |
| | | | | | Based on patch by Ville Skyttä. | ||||
| * | Issue #21313: Tolerate truncated buildinfo in sys.version | Martin Panter | 2016-06-08 | 1 | -4/+11 |
| | | |||||
| * | Issue #26041: Remove "will be removed in Python 3.7" from description messages | Berker Peksag | 2016-04-24 | 1 | -4/+2 |
| | | | | | | | | We will keep platform.dist() and platform.linux_distribution() to make porting from Python 2 easier. Patch by Kumaripaba Miyurusara Athukorala. | ||||
| * | Issue #26513: Fixes platform module detection of Windows Server | Steve Dower | 2016-03-12 | 1 | -1/+1 |
| | | |||||
| * | Merge from 3.4 | Steve Dower | 2015-09-23 | 1 | -1/+4 |
| |\ | |||||
| | * | Handle calls to win32_ver from non-Windows platform | Steve Dower | 2015-09-23 | 1 | -1/+4 |
| | | | |||||
| | * | Issue #19143: platform module now reads Windows version from kernel32.dll to ↵ | Steve Dower | 2015-09-23 | 1 | -168/+120 |
| | | | | | | | | | avoid compatibility shims. | ||||
| * | | Issue #19143: platform module now reads Windows version from kernel32.dll to ↵ | Steve Dower | 2015-09-23 | 1 | -168/+120 |
| | | | | | | | | | avoid compatibility shims. | ||||
| * | | Issue #24839: platform._syscmd_ver raises DeprecationWarning | Steve Dower | 2015-08-11 | 1 | -1/+1 |
| | | | |||||
| * | | Issue #24210: Silence a PendingDeprecationWarning warning in ↵ | Berker Peksag | 2015-05-16 | 1 | -1/+11 |
| | | | | | | | | | platform.platform(). | ||||
| * | | Issue #1322: platform.dist() and platform.linux_distribution() functions are ↵ | Berker Peksag | 2015-05-13 | 1 | -3/+16 |
| | | | | | | | | | | | | | now deprecated. Initial patch by Vajrasky Kok. | ||||
| * | | Issue #22831: Use "with" to avoid possible fd leaks. | Serhiy Storchaka | 2015-04-04 | 1 | -33/+32 |
| |/ | |||||
| * | Issue #20976: pyflakes: Remove unused imports | Victor Stinner | 2014-03-20 | 1 | -1/+0 |
| | | |||||
| * | Issue #20229: Avoid plistlib deprecation warning in platform.mac_ver(). | Ned Deily | 2014-01-13 | 1 | -1/+2 |
| | | |||||
| * | Issue #17429: some PEP 8 compliance fixes for the platform modules, add ↵ | Victor Stinner | 2013-12-08 | 1 | -111/+113 |
| | | | | | whitespaces | ||||
| * | (Merge 3.3) Issue #17429: platform.linux_distribution() now decodes files from | Victor Stinner | 2013-12-08 | 1 | -2/+7 |
| |\ | | | | | | | | | | | | | the UTF-8 encoding with the surrogateescape error handler, instead of decoding from the locale encoding in strict mode. It fixes the function on Fedora 19 which is probably the first major distribution release with a non-ASCII name. Patch written by Toshio Kuratomi. | ||||
| | * | Issue #17429: platform.linux_distribution() now decodes files from the UTF-8 | Victor Stinner | 2013-12-08 | 1 | -2/+7 |
| | | | | | | | | | | | | | | | encoding with the surrogateescape error handler, instead of decoding from the locale encoding in strict mode. It fixes the function on Fedora 19 which is probably the first major distribution release with a non-ASCII name. Patch written by Toshio Kuratomi. | ||||
| * | | #8964: merge with 3.3. | Ezio Melotti | 2013-10-21 | 1 | -3/+16 |
| |\ \ | |/ | |||||
| | * | #8964: fix platform._sys_version to handle IronPython 2.6+. | Ezio Melotti | 2013-10-21 | 1 | -3/+16 |
| | | | |||||
| * | | #18705: merge with 3.3. | Ezio Melotti | 2013-08-17 | 1 | -4/+4 |
| |\ \ | |/ | |||||
| | * | #18705: fix a number of typos. Patch by Févry Thibault. | Ezio Melotti | 2013-08-17 | 1 | -3/+3 |
| | | | |||||
| | * | merge 3.2 | Benjamin Peterson | 2012-10-12 | 1 | -1/+6 |
| | |\ | |||||
| * | | | Issue #18393: Remove use of deprecated API on OSX | Ronald Oussoren | 2013-07-15 | 1 | -63/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The "Gestalt" function on OSX is deprecated (starting with OSX 10.8), remove its usage from the stdlib. The patch removes a number of private functions and a private module, but does not change the public API. The removed code was effectively dead, the platform module has used other code to fetch the OSX version for years and could only use on the Gestalt-based code as a fallback. That fallback can only trigger on broken OSX installs (that is, someone has removed parts of the system install) | ||||
| * | | | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) | Brett Cannon | 2013-07-04 | 1 | -7/+7 |
| | | | | |||||
| * | | | Issue #18200: Update the stdlib (except tests) to use | Brett Cannon | 2013-06-14 | 1 | -7/+7 |
| | | | | | | | | | | | | | ModuleNotFoundError. | ||||
| * | | | Replace IOError with OSError (#16715) | Andrew Svetlov | 2012-12-25 | 1 | -3/+0 |
| | | | | |||||
| * | | | Issue #16719: Get rid of WindowsError. Use OSError instead | Andrew Svetlov | 2012-12-19 | 1 | -1/+1 |
| | | | | | | | | | | | | | Patch by Serhiy Storchaka. | ||||
| * | | | Issue #16717: get rid of socket.error, replace with OSError | Andrew Svetlov | 2012-12-18 | 1 | -1/+1 |
| | | | | |||||
| * | | | Issue #16706: get rid of os.error | Andrew Svetlov | 2012-12-18 | 1 | -5/+5 |
| | | | | |||||
| * | | | Merge 3.2 | Brian Curtin | 2012-10-11 | 1 | -1/+6 |
| |\ \ \ | | |/ | |/| | |||||
| | * | | Fix #16176. Properly identify Windows 8 via platform.platform() | Brian Curtin | 2012-10-11 | 1 | -1/+6 |
| | | | | | | | | | | | | | Add handling of the 6.2 release line, aka Windows 8 and Windows 2012 Server. | ||||
| * | | | MERGE: #16112: platform.architecture does not correctly escape argument to ↵ | Jesus Cea | 2012-10-05 | 1 | -4/+3 |
| |\ \ \ | | |/ | |/| | | | | /usr/bin/file. Fix original patch | ||||
