Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | #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 | ||||
| * | | MERGE: #16112: platform.architecture does not correctly escape argument to ↵ | Jesus Cea | 2012-10-05 | 1 | -4/+3 |
| |\ \ | | |/ | | | | | | | /usr/bin/file. Fix original patch | ||||
| | * | #16112: platform.architecture does not correctly escape argument to ↵ | Jesus Cea | 2012-10-05 | 1 | -2/+2 |
| | | | | | | | | | | | | /usr/bin/file. Fix original patch | ||||
| | * | #16112: platform.architecture does not correctly escape argument to ↵ | Jesus Cea | 2012-10-05 | 1 | -4/+3 |
| | | | | | | | | | | | | /usr/bin/file. Use 'communicate()' and decode the bytes | ||||
* | | | #16135: Removal of OS/2 support (Python code partial cleanup) | Jesus Cea | 2012-10-05 | 1 | -3/+3 |
| | | | |||||
* | | | #16135: Removal of OS/2 support (Remove OS2 and OS/2 references) | Jesus Cea | 2012-10-05 | 1 | -2/+2 |
|/ / | |||||
* | | MERGE: Closes #16112: platform.architecture does not correctly escape ↵ | Jesus Cea | 2012-10-04 | 1 | -5/+8 |
|\ \ | |/ | | | | | argument to /usr/bin/file | ||||
| * | Closes #16112: platform.architecture does not correctly escape argument to ↵ | Jesus Cea | 2012-10-04 | 1 | -5/+7 |
| | | | | | | | | /usr/bin/file | ||||
* | | Issue #15164: Change return value of platform.uname() from a | Larry Hastings | 2012-06-24 | 1 | -7/+11 |
| | | | | | | | | plain tuple to a collections.namedtuple. | ||||
* | | Support Mageia Linux in the platform module. | Antoine Pitrou | 2012-06-24 | 1 | -1/+1 |
| | | |||||
* | | Closes #11678: support Arch linux in the platform module. | Georg Brandl | 2012-06-24 | 1 | -1/+1 |
| | | |||||
* | | Issue #15118: Change return value of os.uname() and os.times() from | Larry Hastings | 2012-06-24 | 1 | -1/+1 |
| | | | | | | | | | | plain tuples to immutable iterable objects with named attributes (structseq objects). | ||||
* | | merge from 3.2 | Brian Curtin | 2012-02-01 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Add a hint that CSD == Service Pack. | Brian Curtin | 2012-02-01 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | People searcing for the way to get a "service pack" will never find that we provide it here, and people that find this function won't know what CSD is until they run the function. On top of this, they won't know what the value means unless they really have a service pack installed. CSD, or Customer Service Diagnostics, is apparently no longer used, and was rarely used term at that. Most references to it online are from universities making Windows 2000 and XP service packs available to students. | ||||
* | | (Merge 3.2) Issue #13545: Fix platform.libc_version() is the SO version is ↵ | Victor Stinner | 2011-12-15 | 1 | -1/+1 |
|\ \ | |/ | | | | | missing | ||||
| * | Issue #13545: Fix platform.libc_version() is the SO version is missing | Victor Stinner | 2011-12-15 | 1 | -1/+1 |
| | | |||||
* | | Make platform.libc_ver() less slow | Antoine Pitrou | 2011-10-07 | 1 | -10/+15 |
| | | |||||
* | | Issue #12549: Correct test_platform to not fail when OS X returns 'x86_64' | Ned Deily | 2011-07-13 | 1 | -0/+1 |
|\ \ | |/ | | | | | as the processor type on some Mac systems. | ||||
| * | Issue #12549: Correct test_platform to not fail when OS X returns 'x86_64' | Ned Deily | 2011-07-13 | 1 | -0/+1 |
| | | | | | | | | | | as the processor type on some Mac systems. Also fix NameError in fallback _mac_ver_gestalt function. And remove out-of-date URL in docs. | ||||
* | | Issue #11377: platform.popen() emits a DeprecationWarning | Victor Stinner | 2011-05-23 | 1 | -0/+2 |
| | | |||||
* | | #11985: merge with 3.2. | Ezio Melotti | 2011-05-04 | 1 | -3/+4 |
|\ \ | |/ | |||||
| * | #11985: merge with 3.1. | Ezio Melotti | 2011-05-04 | 1 | -3/+4 |
| |\ | |||||
| | * | #11985: update docstring of platform.python_implementation. | Ezio Melotti | 2011-05-04 | 1 | -3/+4 |
| | | | |||||
* | | | Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates | Antoine Pitrou | 2011-03-19 | 1 | -1/+1 |
|\ \ \ | |/ / | | | | | | | unbuffered pipes, such that select() works properly on them. | ||||
| * | | Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates | Antoine Pitrou | 2011-03-19 | 1 | -1/+1 |
| |\ \ | | |/ | | | | | | | unbuffered pipes, such that select() works properly on them. | ||||
| | * | Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates | Antoine Pitrou | 2011-03-19 | 1 | -1/+1 |
| | | | | | | | | | | | | unbuffered pipes, such that select() works properly on them. | ||||
* | | | #11565: Merge with 3.2. | Ezio Melotti | 2011-03-16 | 1 | -1/+1 |
|\ \ \ | |/ / | |||||
| * | | #11565: Merge with 3.1. | Ezio Melotti | 2011-03-16 | 1 | -1/+1 |
| |\ \ | | |/ | |||||
| | * | #11565: Fix several typos. Patch by Piotr Kasprzyk. | Ezio Melotti | 2011-03-16 | 1 | -1/+1 |
| | | | |||||
* | | | Merge build identification to default branch. | Georg Brandl | 2011-03-06 | 1 | -1/+3 |
|\ \ \ | |/ / | |||||
| * | | Merge build identification to 3.2 branch. | Georg Brandl | 2011-03-06 | 1 | -1/+3 |
| |\ \ | | |/ | |||||
| | * | Adapt platform and test_platform to the build identification changes. | Georg Brandl | 2011-03-05 | 1 | -1/+3 |
| | | | |||||
| | * | Merged revisions 83644 via svnmerge from | Ronald Oussoren | 2010-08-03 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83644 | ronald.oussoren | 2010-08-03 09:42:42 +0200 (Tue, 03 Aug 2010) | 2 lines Fix for issue 9455: platform.mac_ver() broken on OSX/ppc ........ | ||||
| | * | Merged revisions 83371,83390 via svnmerge from | Georg Brandl | 2010-08-01 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://svn.python.org/python/branches/py3k ........ r83371 | georg.brandl | 2010-07-31 23:54:24 +0200 (Sa, 31 Jul 2010) | 1 line #8292: Fix three instances of truth tests on return values of filter() (which is always true in Python 3). ........ r83390 | georg.brandl | 2010-08-01 10:07:49 +0200 (So, 01 Aug 2010) | 1 line #8230: make Lib/test/sortperf.py run on Python 3. ........ | ||||
| | * | Merged revisions 83075 via svnmerge from | Ronald Oussoren | 2010-07-23 | 1 | -11/+50 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83075 | ronald.oussoren | 2010-07-23 12:54:59 +0100 (Fri, 23 Jul 2010) | 5 lines Fix for issue 7895. Avoid crashing the interpreter when calling platform.mac_ver after calling os.fork by reading from a system configuration file instead of using OSX APIs. ........ | ||||
| | * | Merged revisions 80859 via svnmerge from | Brian Curtin | 2010-05-06 | 1 | -14/+34 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r80859 | brian.curtin | 2010-05-05 22:05:50 -0500 (Wed, 05 May 2010) | 12 lines Merged revisions 80857 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r80857 | brian.curtin | 2010-05-05 21:54:44 -0500 (Wed, 05 May 2010) | 5 lines Fix #7863. Properly identify Windows 7 and Server 2008 R2. Removed various unused code and added a way to correctly determine server vs. workstation via the registry. ........ ................ |