From 0c8f13df8faa46714707581d97b237c0c4e6b157 Mon Sep 17 00:00:00 2001 From: thefourtheye Date: Wed, 6 May 2015 20:06:30 +0530 Subject: [PATCH] tools: remove unused GuessWordSize function Apart from the fact that the implementation is not reliable, GuessWordSize is not used anywhere in the codebase. PR-URL: /~https://github.com/iojs/io.js/pull/1638 Reviewed-By: Roman Reiss Reviewed-By: Jeremiah Senkpiel --- tools/utils.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tools/utils.py b/tools/utils.py index 03c56aefb85b59..fa1548501650f7 100644 --- a/tools/utils.py +++ b/tools/utils.py @@ -89,12 +89,5 @@ def GuessArchitecture(): return None -def GuessWordsize(): - if '64' in platform.machine(): - return '64' - else: - return '32' - - def IsWindows(): return GuessOS() == 'win32'