# File lib/pg.rb, line 29
        def self::version_string( include_buildnum=false )
                vstring = "%s %s" % [ self.name, VERSION ]
                vstring << " (build %s)" % [ REVISION[/: ([[:xdigit:]]+)/, 1] || '0' ] if include_buildnum
                return vstring
        end