Best Python code snippet using hypothesis
GlobalDefine.py
Source:GlobalDefine.py
1# -*- coding: utf-8 -*-2"""3"""4# ------------------------------------------------------------------------------5# entity state6# ------------------------------------------------------------------------------7ENTITY_STATE_UNKNOW = -18ENTITY_STATE_FREE = 09ENTITY_STATE_DEAD = 110ENTITY_STATE_REST = 211ENTITY_STATE_FIGHT = 312ENTITY_STATE_MAX = 413# sub state14ENTITY_SUB_STATE_NORMAL = 015ENTITY_SUB_STATE_RANDOM_STROLL = 116ENTITY_SUB_STATE_GO_BACK = 217ENTITY_SUB_STATE_CHASE_TARGET = 318ENTITY_SUB_STATE_FLEE = 419# entityçä¸äºè¡ä¸ºç¦æ¢æ å¿20FORBID_NO = 0x0000000021FORBID_MOTION = 0x0000000122FORBID_CHAT = 0x0000000223FORBID_SPELL = 0x0000000424FORBID_TRADE = 0x0000000825FORBID_EQUIP = 0x0000001026FORBID_INTONATE = 0x0000002027FORBID_ATTACK_PHY_NEAR = 0x0000004028FORBID_ATTACK_PHY_FAR = 0x0000008029FORBID_ATTACK_MAGIC = 0x0000008030FORBID_YAW = 0x0000800031FORBID_ATTACK_PHY = FORBID_ATTACK_PHY_NEAR | FORBID_ATTACK_PHY_FAR32FORBID_ATTACK_MAG = FORBID_ATTACK_MAGIC33FORBID_ATTACK = FORBID_ATTACK_PHY | FORBID_ATTACK_MAG34FORBID_MOTION_YAW = FORBID_MOTION | FORBID_YAW35FORBID_ALL = [36 FORBID_MOTION,37 FORBID_YAW,38 FORBID_CHAT,39 FORBID_ATTACK,40 FORBID_SPELL,41 FORBID_TRADE,42 FORBID_EQUIP,43 FORBID_INTONATE,44 FORBID_ATTACK_PHY_NEAR,45 FORBID_ATTACK_PHY_FAR,46 FORBID_ATTACK_MAGIC,47]48FORBID_ACTIONS = {49 ENTITY_STATE_UNKNOW : 0,50 ENTITY_STATE_FREE : FORBID_NO,51 ENTITY_STATE_DEAD : FORBID_MOTION_YAW | FORBID_TRADE | FORBID_ATTACK | FORBID_SPELL | FORBID_EQUIP,52 ENTITY_STATE_REST : FORBID_MOTION_YAW | FORBID_TRADE | FORBID_ATTACK | FORBID_SPELL | FORBID_EQUIP,53 ENTITY_STATE_FIGHT : FORBID_EQUIP | FORBID_TRADE,54 }55for f in FORBID_ALL: FORBID_ACTIONS[ENTITY_STATE_UNKNOW] |= f56# ------------------------------------------------------------------------------57# å®ä¹å¯¹è¯ç¸å
³58# ------------------------------------------------------------------------------59DIALOG_TYPE_NORMAL = 0 # æ®é对è¯60DIALOG_TYPE_QUEST = 1 # ä»»å¡å¯¹è¯61# ------------------------------------------------------------------------------62# æè½ç¸å
³63# ------------------------------------------------------------------------------64# æè½å¯¹è±¡ç±»å«65SKILL_OBJECT_TYPE_UNKNOWN = 066SKILL_OBJECT_TYPE_ENTITY = 1...
minidom.py
Source:minidom.py
1# defusedxml2#3# Copyright (c) 2013 by Christian Heimes <christian@python.org>4# Licensed to PSF under a Contributor Agreement.5# See https://www.python.org/psf/license for licensing details.6"""Defused xml.dom.minidom7"""8from __future__ import print_function, absolute_import9from xml.dom.minidom import _do_pulldom_parse10from . import expatbuilder as _expatbuilder11from . import pulldom as _pulldom12__origin__ = "xml.dom.minidom"13def parse(14 file, parser=None, bufsize=None, forbid_dtd=False, forbid_entities=True, forbid_external=True15):16 """Parse a file into a DOM by filename or file object."""17 if parser is None and not bufsize:18 return _expatbuilder.parse(19 file,20 forbid_dtd=forbid_dtd,21 forbid_entities=forbid_entities,22 forbid_external=forbid_external,23 )24 else:25 return _do_pulldom_parse(26 _pulldom.parse,27 (file,),28 {29 "parser": parser,30 "bufsize": bufsize,31 "forbid_dtd": forbid_dtd,32 "forbid_entities": forbid_entities,33 "forbid_external": forbid_external,34 },35 )36def parseString(37 string, parser=None, forbid_dtd=False, forbid_entities=True, forbid_external=True38):39 """Parse a file into a DOM from a string."""40 if parser is None:41 return _expatbuilder.parseString(42 string,43 forbid_dtd=forbid_dtd,44 forbid_entities=forbid_entities,45 forbid_external=forbid_external,46 )47 else:48 return _do_pulldom_parse(49 _pulldom.parseString,50 (string,),51 {52 "parser": parser,53 "forbid_dtd": forbid_dtd,54 "forbid_entities": forbid_entities,55 "forbid_external": forbid_external,56 },...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!