This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2010年02月05日 18:07 by brian.curtin, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| arch_misrepresented.diff | brian.curtin, 2010年02月05日 18:07 | patch against trunk | ||
| uname_WOW64_test.patch | r.david.murray, 2010年03月20日 01:24 | |||
| uname_WOW64_test2.patch | brian.curtin, 2010年03月22日 14:02 | |||
| Messages (11) | |||
|---|---|---|---|
| msg98890 - (view) | Author: Brian Curtin (brian.curtin) * (Python committer) | Date: 2010年02月05日 18:07 | |
When running 32-bit Python on a 64-bit version of Windows, therefore running the process in WOW64 mode, platform.machine returns a misleading value. When running in WOW64, the processor architecture is masked to appear as "x86" when the machine is actually "AMD64" (which you see on a 64-bit app on 64-bit OS). The change involves looking at an environment variable only set on WOW64 processes to see the native architecture. See http://blogs.msdn.com/david.wang/archive/2006/03/26/HOWTO-Detect-Process-Bitness.aspx The patch does not include any test, as I'm not really sure how you could test this without using the change itself to figure out when it should be tested. Suggestions would be appreciated. |
|||
| msg98896 - (view) | Author: Antoine Pitrou (pitrou) * (Python committer) | Date: 2010年02月05日 19:20 | |
It's also inconsistent with Linux behaviour: >>> import sys >>> sys.maxsize 2147483647 >>> import platform >>> platform.machine() 'x86_64' >>> platform.architecture() ('32bit', 'ELF') (on a Python compiled with "-m32" on a 64-bit Linux) |
|||
| msg98897 - (view) | Author: Antoine Pitrou (pitrou) * (Python committer) | Date: 2010年02月05日 19:23 | |
The test could simply check that platform.machine() never returns "x86" when sys.maxsize is greater than 2**32. (and it would even be platform-agnostic) |
|||
| msg98902 - (view) | Author: Marc-Andre Lemburg (lemburg) * (Python committer) | Date: 2010年02月05日 19:43 | |
The patch looks ok. Since we are emulating the Unix uname() function here, we might as well mimic its inconsistencies. Note that platform.machine() and platform.processor() are not really very reliable ways of determining the machine type or processor. |
|||
| msg98922 - (view) | Author: Marc-Andre Lemburg (lemburg) * (Python committer) | Date: 2010年02月05日 23:56 | |
Antoine Pitrou wrote: > > Antoine Pitrou <pitrou@free.fr> added the comment: > > The test could simply check that platform.machine() never returns "x86" when sys.maxsize is greater than 2**32. > (and it would even be platform-agnostic) I'm not sure what such a test would prove, e.g. on 64-bit Mac OS X, platform.machine() return 'i386'. That could be mapped to 'x86'... Note that 'x86_64' is just a 'x86' compatible processor with the AMD 64-bit extensions, so 'x86' is a superset of 'x86_64'. |
|||
| msg98926 - (view) | Author: Antoine Pitrou (pitrou) * (Python committer) | Date: 2010年02月06日 00:32 | |
> I'm not sure what such a test would prove, e.g. on 64-bit Mac OS X, > platform.machine() return 'i386'. That could be mapped to 'x86'... You're right. There doesn't seem to be much consistency accross platforms. > Note that 'x86_64' is just a 'x86' compatible processor with > the AMD 64-bit extensions, so 'x86' is a superset of 'x86_64'. Oops, indeed. |
|||
| msg101331 - (view) | Author: Brian Curtin (brian.curtin) * (Python committer) | Date: 2010年03月19日 15:17 | |
#7347 depends on this for proper testing, and arch_misrepresented.diff seems to have been labeled as acceptable. Would anyone be willing to check it in? |
|||
| msg101352 - (view) | Author: R. David Murray (r.david.murray) * (Python committer) | Date: 2010年03月20日 01:24 | |
I think it is actually pretty straightforward to write a *unit* test for this. We just need to check that the logic works correctly given the expected presence or absence of the environment variables. That doesn't test whether or not the right thing happens in the environment when you actually run a WOW64, but I don't think it is Python's responsibility to test that. If Microsoft changes the API, platform will break and the tests won't notice, but I don't think there's anything we can do about that, since as you say the API is the only way to find out what to expect for results. Test patch attached. Brian, if you can confirm that this test fails before your patch and succeeds afterward, I will commit both patches. |
|||
| msg101509 - (view) | Author: Brian Curtin (brian.curtin) * (Python committer) | Date: 2010年03月22日 14:02 | |
Ah, that's simple enough :) Minor changes to the test patch: uname caches it's results, so I added a few lines to clear the cache before the uname calls. In order to not affect other tests, the whole thing is in a try/finally so we don't leave anything behind in cache. The test passes on both a 32 and 64 bit Python. |
|||
| msg101524 - (view) | Author: R. David Murray (r.david.murray) * (Python committer) | Date: 2010年03月22日 18:22 | |
Patches applied to trunk in r79294, py3k in r79298. Should this be backported? |
|||
| msg101528 - (view) | Author: Marc-Andre Lemburg (lemburg) * (Python committer) | Date: 2010年03月22日 19:47 | |
R. David Murray wrote: > > R. David Murray <rdmurray@bitdance.com> added the comment: > > Patches applied to trunk in r79294, py3k in r79298. Should this be backported? I don't think so: applications relying on the previous behavior would need to be updated and requiring this for a patch level release of Python is not a good idea. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:57 | admin | set | github: 52108 |
| 2011年06月13日 19:53:31 | santoso.wijaya | set | nosy:
+ santoso.wijaya |
| 2010年03月23日 01:56:12 | r.david.murray | set | status: open -> closed keywords: patch, patch stage: commit review -> resolved resolution: accepted -> fixed versions: - Python 2.6, Python 3.1 |
| 2010年03月22日 19:47:40 | lemburg | set | messages: + msg101528 |
| 2010年03月22日 18:22:08 | r.david.murray | set | keywords:
- needs review messages: + msg101524 stage: patch review -> commit review |
| 2010年03月22日 14:02:52 | brian.curtin | set | keywords:
patch, patch, needs review files: + uname_WOW64_test2.patch messages: + msg101509 |
| 2010年03月20日 01:24:09 | r.david.murray | set | files:
+ uname_WOW64_test.patch nosy: + r.david.murray messages: + msg101352 assignee: r.david.murray keywords: patch, patch, needs review |
| 2010年03月19日 15:17:29 | brian.curtin | set | keywords:
patch, patch, needs review messages: + msg101331 |
| 2010年02月23日 15:04:06 | brian.curtin | set | keywords:
patch, patch, needs review resolution: accepted |
| 2010年02月06日 19:01:49 | brian.curtin | link | issue7347 dependencies |
| 2010年02月06日 00:32:32 | pitrou | set | messages: + msg98926 |
| 2010年02月05日 23:56:22 | lemburg | set | messages: + msg98922 |
| 2010年02月05日 19:43:29 | lemburg | set | keywords:
patch, patch, needs review messages: + msg98902 |
| 2010年02月05日 19:23:05 | pitrou | set | keywords:
patch, patch, needs review messages: + msg98897 |
| 2010年02月05日 19:20:32 | pitrou | set | keywords:
patch, patch, needs review nosy: + pitrou messages: + msg98896 |
| 2010年02月05日 19:16:55 | pitrou | set | keywords:
patch, patch, needs review nosy: + lemburg |
| 2010年02月05日 18:07:49 | brian.curtin | create | |