summaryrefslogtreecommitdiff
path: root/tools/utils.py
diff options
context:
space:
mode:
authorthefourtheye <thechargingvolcano@gmail.com>2015-05-06 20:06:30 +0530
committerJeremiah Senkpiel <fishrock123@rocketmail.com>2015-05-06 16:28:56 -0400
commit0c8f13df8faa46714707581d97b237c0c4e6b157 (patch)
tree84cf8c15b68ff3a83e63cd2729544cb090e3312d /tools/utils.py
parentb16d9c28e8dced7c5d7a3b528075ce7f4b03325b (diff)
downloadandroid-node-v8-0c8f13df8faa46714707581d97b237c0c4e6b157.tar.gz
android-node-v8-0c8f13df8faa46714707581d97b237c0c4e6b157.tar.bz2
android-node-v8-0c8f13df8faa46714707581d97b237c0c4e6b157.zip
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 <me@silverwind.io> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Diffstat (limited to 'tools/utils.py')
-rw-r--r--tools/utils.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tools/utils.py b/tools/utils.py
index 03c56aefb8..fa15485016 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'