summaryrefslogtreecommitdiff
path: root/Lib/platform.py
Commit message (Collapse)AuthorAgeFilesLines
* Merge all fixes from Python 2.4. This includes:Guido van Rossum2004-05-051-29/+23
| | | | | | | | | | 1.12 Added more Windows version names (thanks to Thomas Heller). Fixed bug in platform() cache (thanks to Brett Cannon). 1.10,1.11 Fixed a caching bug in platform.platform() where the argument of 'terse' was not taken into consideration when caching value.
* Using reversed() is not compatible with Python 1.5.2.Guido van Rossum2004-05-041-1/+1
|
* Fix last patch to make backwards-compatible with Python 1.5.2 .Brett Cannon2004-03-251-14/+26
| | | | Bumped up micro version number.
* Fixed a caching bug in platform.platform() where the argument of 'terse' wasBrett Cannon2004-03-251-8/+8
| | | | not taken into consideration when caching value.
* Backport of rev. 1.6 and 1.7 from head.Brett Cannon2003-10-141-20/+23
| | | | | | 1.6 was docstring clean-up. 1.7 was a fix for bug #780461 (platform.mac_ver() failing under OS X) and was flagged as a backport candidate.
* remove extra parameter from _java_getprop, remove duplicate importsNeal Norwitz2003-06-291-2/+2
|
* Fix docstring typoAndrew M. Kuchling2003-04-241-1/+1
|
* Whitespace normalization.Tim Peters2003-04-241-17/+17
|
* Reformatted a bit to remove the lengthy re.compile() from the functionMarc-André Lemburg2003-04-241-23/+25
| | | | definitions.
* New module platform.py, submitted by Marc-Andre Lemburg.Marc-André Lemburg2003-04-241-0/+1232
There's no separate documentation for this module yet - apart from the doc-strings which explain the APIs.