update to waf 1.7.3

This commit is contained in:
Thomas Nagy 2012-09-13 06:10:28 +02:00
parent ecfd580227
commit 8cd692474d
3 changed files with 4 additions and 13 deletions

View File

@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
import os, sys
VERSION="1.7.2"
VERSION="1.7.3"
REVISION="x"
INSTALL="x"
C1='x'

View File

@ -11,10 +11,10 @@ from waflib import Utils, Errors, Logs
import waflib.Node
# the following 3 constants are updated on each new release (do not touch)
HEXVERSION=0x1070200
HEXVERSION=0x1070300
"""Constant updated on new releases"""
WAFVERSION="1.7.2"
WAFVERSION="1.7.3"
"""Constant updated on new releases"""
WAFREVISION="a7e69d6b81b04729804754c4d5214da063779a65"
@ -182,15 +182,6 @@ class Context(ctx):
self.exec_dict = {'ctx':self, 'conf':self, 'bld':self, 'opt':self}
self.logger = None
def __hash__(self):
"""
Return a hash value for storing context objects in dicts or sets. The value is not persistent.
:return: hash value
:rtype: int
"""
return id(self)
def load(self, tool_list, *k, **kw):
"""
Load a Waf tool as a module, and try calling the function named :py:const:`waflib.Context.Context.fun` from it.

View File

@ -10,7 +10,7 @@ To add a tool that does not exist in the folder compat15, pass an absolute path:
"""
VERSION="1.7.2"
VERSION="1.7.3"
APPNAME='waf'
REVISION=''