_id
stringlengths
2
7
title
stringlengths
1
88
partition
stringclasses
3 values
text
stringlengths
75
19.8k
language
stringclasses
1 value
meta_information
dict
q271000
PJFMutators.safe_unicode
test
def safe_unicode(self, buf): """ Safely return an unicode encoded string """ tmp = "" buf = "".join(b for b in buf) for character in buf: tmp += character return tmp
python
{ "resource": "" }
q271001
PJFServer.run
test
def run(self): """ Start the servers """ route("/")(self.serve) if self.config.html: route("/<filepath:path>")(self.custom_html) if self.config.fuzz_web: self.request_checker.start() self.httpd.start() self.httpsd.start()
python
{ "resource": "" }
q271002
PJFServer.stop
test
def stop(self): """ Kill the servers """ os.kill(self.httpd.pid, signal.SIGKILL) os.kill(self.httpsd.pid, signal.SIGKILL) self.client_queue.put((0,0)) if self.config.fuzz_web: self.request_checker.join() self.logger.debug("[{0}] - PJFServer suc...
python
{ "resource": "" }
q271003
PJFServer.custom_html
test
def custom_html(self, filepath): """ Serve custom HTML page """ try: response.headers.append("Access-Control-Allow-Origin", "*") response.headers.append("Accept-Encoding", "identity") response.headers.append("Content-Type", "text/html") ret...
python
{ "resource": "" }
q271004
PJFServer.serve
test
def serve(self): """ Serve fuzzed JSON object """ try: fuzzed = self.json.fuzzed if self.config.fuzz_web: self.client_queue.put((request.environ.get('REMOTE_ADDR'), fuzzed)) response.headers.append("Access-Control-Allow-Origin", "*") ...
python
{ "resource": "" }
q271005
PJFMutation.fuzz
test
def fuzz(self, obj): """ Generic fuzz mutator, use a decorator for the given type """ decorators = self.decorators @decorators.mutate_object_decorate def mutate(): return obj return mutate()
python
{ "resource": "" }
q271006
PJFExecutor.spawn
test
def spawn(self, cmd, stdin_content="", stdin=False, shell=False, timeout=2): """ Spawn a new process using subprocess """ try: if type(cmd) != list: raise PJFInvalidType(type(cmd), list) if type(stdin_content) != str: raise PJFInval...
python
{ "resource": "" }
q271007
PJFExecutor.get_output
test
def get_output(self, stdin_content, stdin): """ Try to get output in a separate thread """ try: if stdin: if sys.version_info >= (3, 0): self.process.stdin.write(bytes(stdin_content, "utf-8")) else: self....
python
{ "resource": "" }
q271008
PJFExecutor.finish_read
test
def finish_read(self, timeout=2, stdin_content="", stdin=False): """ Wait until we got output or until timeout is over """ process = Thread(target=self.get_output, args=(stdin_content, stdin)) process.start() if timeout > 0: process.join(timeout) else:...
python
{ "resource": "" }
q271009
PJFExecutor.close
test
def close(self): """ Terminate the newly created process """ try: self.process.terminate() self.return_code = self.process.returncode except OSError: pass self.process.stdin.close() self.process.stdout.close() self.proce...
python
{ "resource": "" }
q271010
PJFConfiguration.start
test
def start(self): """ Parse the command line and start PyJFuzz """ from .pjf_worker import PJFWorker worker = PJFWorker(self) if self.update_pjf: worker.update_library() elif self.browser_auto: worker.browser_autopwn() elif self.fuzz...
python
{ "resource": "" }
q271011
PJFExternalFuzzer.execute
test
def execute(self, obj): """ Perform the actual external fuzzing, you may replace this method in order to increase performance """ try: if self.config.stdin: self.spawn(self.config.command, stdin_content=obj, stdin=True, timeout=1) else: ...
python
{ "resource": "" }
q271012
PJFEncoder.json_encode
test
def json_encode(func): """ Decorator used to change the return value from PJFFactory.fuzzed, it makes the structure printable """ def func_wrapper(self, indent, utf8): if utf8: encoding = "\\x%02x" else: encoding = "\\u%04x" ...
python
{ "resource": "" }
q271013
String.build
test
def build(self, pre=None, shortest=False): """Build the String instance :param list pre: The prerequisites list (optional, default=None) :param bool shortest: Whether or not the shortest reference-chain (most minimal) version of the field should be generated. """ if pre is None:...
python
{ "resource": "" }
q271014
And.build
test
def build(self, pre=None, shortest=False): """Build the ``And`` instance :param list pre: The prerequisites list :param bool shortest: Whether or not the shortest reference-chain (most minimal) version of the field should be generated. """ if pre is None: pre = [] ...
python
{ "resource": "" }
q271015
Q.build
test
def build(self, pre=None, shortest=False): """Build the ``Quote`` instance :param list pre: The prerequisites list :param bool shortest: Whether or not the shortest reference-chain (most minimal) version of the field should be generated. """ res = super(Q, self).build(pre, short...
python
{ "resource": "" }
q271016
Or.build
test
def build(self, pre=None, shortest=False): """Build the ``Or`` instance :param list pre: The prerequisites list :param bool shortest: Whether or not the shortest reference-chain (most minimal) version of the field should be generated. """ if pre is None: pre = [] ...
python
{ "resource": "" }
q271017
Opt.build
test
def build(self, pre=None, shortest=False): """Build the current ``Opt`` instance :param list pre: The prerequisites list :param bool shortest: Whether or not the shortest reference-chain (most minimal) version of the field should be generated. """ if pre is None: pre...
python
{ "resource": "" }
q271018
Ref.build
test
def build(self, pre=None, shortest=False): """Build the ``Ref`` instance by fetching the rule from the GramFuzzer instance and building it :param list pre: The prerequisites list :param bool shortest: Whether or not the shortest reference-chain (most minimal) version of the field should...
python
{ "resource": "" }
q271019
STAR.build
test
def build(self, pre=None, shortest=False): """Build the STAR field. :param list pre: The prerequisites list :param bool shortest: Whether or not the shortest reference-chain (most minimal) version of the field should be generated. """ if pre is None: pre = [] ...
python
{ "resource": "" }
q271020
PJFProcessMonitor.shutdown
test
def shutdown(self, *args): """ Shutdown the running process and the monitor """ try: self._shutdown() if self.process: self.process.wait() self.process.stdout.close() self.process.stdin.close() self.p...
python
{ "resource": "" }
q271021
PJFProcessMonitor.run_and_monitor
test
def run_and_monitor(self): """ Run command once and check exit code """ signal.signal(signal.SIGINT, self.shutdown) self.spawn(self.config.process_to_monitor, timeout=0) return self._is_sigsegv(self.return_code)
python
{ "resource": "" }
q271022
PJFProcessMonitor.start_monitor
test
def start_monitor(self, standalone=True): """ Run command in a loop and check exit status plus restart process when needed """ try: self.start() cmdline = shlex.split(self.config.process_to_monitor) if standalone: signal.signal(signal.S...
python
{ "resource": "" }
q271023
randfloat
test
def randfloat(a, b=None): """Return a random float :param float a: Either the minimum value (inclusive) if ``b`` is set, or the maximum value if ``b`` is not set (non-inclusive, in which case the minimum is implicitly 0.0) :param float b: The maximum value to generate (non-inclusive) :returns: ...
python
{ "resource": "" }
q271024
GramFuzzer.add_definition
test
def add_definition(self, cat, def_name, def_val, no_prune=False, gram_file="default"): """Add a new rule definition named ``def_name`` having value ``def_value`` to the category ``cat``. :param str cat: The category to add the rule to :param str def_name: The name of the rule definition...
python
{ "resource": "" }
q271025
GramFuzzer.add_to_cat_group
test
def add_to_cat_group(self, cat, cat_group, def_name): """Associate the provided rule definition name ``def_name`` with the category group ``cat_group`` in the category ``cat``. :param str cat: The category the rule definition was declared in :param str cat_group: The group within the ca...
python
{ "resource": "" }
q271026
GramFuzzer.gen
test
def gen(self, num, cat=None, cat_group=None, preferred=None, preferred_ratio=0.5, max_recursion=None, auto_process=True): """Generate ``num`` rules from category ``cat``, optionally specifying preferred category groups ``preferred`` that should be preferred at probability ``preferred_ratio`` ove...
python
{ "resource": "" }
q271027
PJFFactory.fuzz_elements
test
def fuzz_elements(self, element): """ Fuzz all elements inside the object """ try: if type(element) == dict: tmp_element = {} for key in element: if len(self.config.parameters) > 0: if self.config.exc...
python
{ "resource": "" }
q271028
PJFFactory.fuzzed
test
def fuzzed(self): """ Get a printable fuzzed object """ try: if self.config.strong_fuzz: fuzzer = PJFMutators(self.config) if self.config.url_encode: if sys.version_info >= (3, 0): return urllib.parse...
python
{ "resource": "" }
q271029
PJFFactory.get_fuzzed
test
def get_fuzzed(self, indent=False, utf8=False): """ Return the fuzzed object """ try: if "array" in self.json: return self.fuzz_elements(dict(self.json))["array"] else: return self.fuzz_elements(dict(self.json)) except Excep...
python
{ "resource": "" }
q271030
PJFDecorators.mutate_object_decorate
test
def mutate_object_decorate(self, func): """ Mutate a generic object based on type """ def mutate(): obj = func() return self.Mutators.get_mutator(obj, type(obj)) return mutate
python
{ "resource": "" }
q271031
Process.sigterm_handler
test
def sigterm_handler(self, signum, frame): """ When we get term signal if we are waiting and got a sigterm, we just exit. if we have a child running, we pass the signal first to the child then we exit. :param signum: :param frame: :return: """ asse...
python
{ "resource": "" }
q271032
Process.cli_command_quit
test
def cli_command_quit(self, msg): """\ kills the child and exits """ if self.state == State.RUNNING and self.sprocess and self.sprocess.proc: self.sprocess.proc.kill() else: sys.exit(0)
python
{ "resource": "" }
q271033
Process.cli_command_pause
test
def cli_command_pause(self, msg): """\ if we have a running child we kill it and set our state to paused if we don't have a running child, we set our state to paused this will pause all the nodes in single-beat cluster its useful when you deploy some code and don't want your chi...
python
{ "resource": "" }
q271034
Process.cli_command_resume
test
def cli_command_resume(self, msg): """\ sets state to waiting - so we resume spawning children """ if self.state == State.PAUSED: self.state = State.WAITING
python
{ "resource": "" }
q271035
Process.cli_command_stop
test
def cli_command_stop(self, msg): """\ stops the running child process - if its running it will re-spawn in any single-beat node after sometime :param msg: :return: """ info = '' if self.state == State.RUNNING and self.sprocess and self.sprocess.proc: ...
python
{ "resource": "" }
q271036
Process.cli_command_restart
test
def cli_command_restart(self, msg): """\ restart the subprocess i. we set our state to RESTARTING - on restarting we still send heartbeat ii. we kill the subprocess iii. we start again iv. if its started we set our state to RUNNING, else we set it to WAITING :par...
python
{ "resource": "" }
q271037
Skype.getEvents
test
def getEvents(self): """ Retrieve a list of events since the last poll. Multiple calls may be needed to retrieve all events. If no events occur, the API will block for up to 30 seconds, after which an empty list is returned. As soon as an event is received in this time, it is returned...
python
{ "resource": "" }
q271038
Skype.setMood
test
def setMood(self, mood): """ Update the activity message for the current user. Args: mood (str): new mood message """ self.conn("POST", "{0}/users/{1}/profile/partial".format(SkypeConnection.API_USER, self.userId), auth=SkypeConnection.Auth.SkypeTok...
python
{ "resource": "" }
q271039
Skype.setAvatar
test
def setAvatar(self, image): """ Update the profile picture for the current user. Args: image (file): a file-like object to read the image from """ self.conn("PUT", "{0}/users/{1}/profile/avatar".format(SkypeConnection.API_USER, self.userId), auth=Sk...
python
{ "resource": "" }
q271040
Skype.getUrlMeta
test
def getUrlMeta(self, url): """ Retrieve various metadata associated with a URL, as seen by Skype. Args: url (str): address to ping for info Returns: dict: metadata for the website queried """ return self.conn("GET", SkypeConnection.API_URL, param...
python
{ "resource": "" }
q271041
SkypeContacts.contact
test
def contact(self, id): """ Retrieve all details for a specific contact, including fields such as birthday and mood. Args: id (str): user identifier to lookup Returns: SkypeContact: resulting contact object """ try: json = self.skype.c...
python
{ "resource": "" }
q271042
SkypeContacts.user
test
def user(self, id): """ Retrieve public information about a user. Args: id (str): user identifier to lookup Returns: SkypeUser: resulting user object """ json = self.skype.conn("POST", "{0}/batch/profiles".format(SkypeConnection.API_PROFILE), ...
python
{ "resource": "" }
q271043
SkypeContacts.bots
test
def bots(self): """ Retrieve a list of all known bots. Returns: SkypeBotUser list: resulting bot user objects """ json = self.skype.conn("GET", "{0}/agents".format(SkypeConnection.API_BOT), auth=SkypeConnection.Auth.SkypeToken).json().g...
python
{ "resource": "" }
q271044
SkypeContacts.bot
test
def bot(self, id): """ Retrieve a single bot. Args: id (str): UUID or username of the bot Returns: SkypeBotUser: resulting bot user object """ json = self.skype.conn("GET", "{0}/agents".format(SkypeConnection.API_BOT), params={"agentId": id}, ...
python
{ "resource": "" }
q271045
SkypeContacts.search
test
def search(self, query): """ Search the Skype Directory for a user. Args: query (str): name to search for Returns: SkypeUser list: collection of possible results """ results = self.skype.conn("GET", SkypeConnection.API_DIRECTORY, ...
python
{ "resource": "" }
q271046
SkypeContacts.requests
test
def requests(self): """ Retrieve any pending contact requests. Returns: :class:`SkypeRequest` list: collection of requests """ requests = [] for json in self.skype.conn("GET", "{0}/users/{1}/invites" .format(SkypeCon...
python
{ "resource": "" }
q271047
SkypeObj.fromRaw
test
def fromRaw(cls, skype=None, raw={}): """ Create a new instance based on the raw properties of an API response. This can be overridden to automatically create subclass instances based on the raw content. Args: skype (Skype): parent Skype instance raw (dict): raw...
python
{ "resource": "" }
q271048
SkypeObj.merge
test
def merge(self, other): """ Copy properties from other into self, skipping ``None`` values. Also merges the raw data. Args: other (SkypeObj): second object to copy fields from """ for attr in self.attrs: if not getattr(other, attr, None) is None: ...
python
{ "resource": "" }
q271049
SkypeObjs.merge
test
def merge(self, obj): """ Add a given object to the cache, or update an existing entry to include more fields. Args: obj (SkypeObj): object to add to the cache """ if obj.id in self.cache: self.cache[obj.id].merge(obj) else: self.cache...
python
{ "resource": "" }
q271050
SkypeConnection.syncStateCall
test
def syncStateCall(self, method, url, params={}, **kwargs): """ Follow and track sync state URLs provided by an API endpoint, in order to implicitly handle pagination. In the first call, ``url`` and ``params`` are used as-is. If a ``syncState`` endpoint is provided in the response, subs...
python
{ "resource": "" }
q271051
SkypeConnection.readToken
test
def readToken(self): """ Attempt to re-establish a connection using previously acquired tokens. If the Skype token is valid but the registration token is invalid, a new endpoint will be registered. Raises: .SkypeAuthException: if the token file cannot be used to authenticat...
python
{ "resource": "" }
q271052
SkypeConnection.writeToken
test
def writeToken(self): """ Store details of the current connection in the named file. This can be used by :meth:`readToken` to re-authenticate at a later time. """ # Write token file privately. with os.fdopen(os.open(self.tokenFile, os.O_WRONLY | os.O_CREAT, 0o600), "w") ...
python
{ "resource": "" }
q271053
SkypeConnection.verifyToken
test
def verifyToken(self, auth): """ Ensure the authentication token for the given auth method is still valid. Args: auth (Auth): authentication type to check Raises: .SkypeAuthException: if Skype auth is required, and the current token has expired and can't be rene...
python
{ "resource": "" }
q271054
SkypeConnection.refreshSkypeToken
test
def refreshSkypeToken(self): """ Take the existing Skype token and refresh it, to extend the expiry time without other credentials. Raises: .SkypeAuthException: if the login request is rejected .SkypeApiException: if the login form can't be processed """ ...
python
{ "resource": "" }
q271055
SkypeConnection.getUserId
test
def getUserId(self): """ Ask Skype for the authenticated user's identifier, and store it on the connection object. """ self.userId = self("GET", "{0}/users/self/profile".format(self.API_USER), auth=self.Auth.SkypeToken).json().get("username")
python
{ "resource": "" }
q271056
SkypeConnection.getRegToken
test
def getRegToken(self): """ Acquire a new registration token. Once successful, all tokens and expiry times are written to the token file (if specified on initialisation). """ self.verifyToken(self.Auth.SkypeToken) token, expiry, msgsHost, endpoint = SkypeRegistrationToken...
python
{ "resource": "" }
q271057
SkypeConnection.syncEndpoints
test
def syncEndpoints(self): """ Retrieve all current endpoints for the connected user. """ self.endpoints["all"] = [] for json in self("GET", "{0}/users/ME/presenceDocs/messagingService".format(self.msgsHost), params={"view": "expanded"}, auth=self.Auth.RegT...
python
{ "resource": "" }
q271058
SkypeLiveAuthProvider.checkUser
test
def checkUser(self, user): """ Query a username or email address to see if a corresponding Microsoft account exists. Args: user (str): username or email address of an account Returns: bool: whether the account exists """ return not self.conn("POS...
python
{ "resource": "" }
q271059
SkypeRefreshAuthProvider.auth
test
def auth(self, token): """ Take an existing Skype token and refresh it, to extend the expiry time without other credentials. Args: token (str): existing Skype token Returns: (str, datetime.datetime) tuple: Skype token, and associated expiry if known Rai...
python
{ "resource": "" }
q271060
SkypeRegistrationTokenProvider.auth
test
def auth(self, skypeToken): """ Request a new registration token using a current Skype token. Args: skypeToken (str): existing Skype token Returns: (str, datetime.datetime, str, SkypeEndpoint) tuple: registration token, associated expiry if known, ...
python
{ "resource": "" }
q271061
SkypeEndpoint.config
test
def config(self, name="skype"): """ Configure this endpoint to allow setting presence. Args: name (str): display name for this endpoint """ self.conn("PUT", "{0}/users/ME/endpoints/{1}/presenceDocs/messagingService" .format(self.conn.msgsHost...
python
{ "resource": "" }
q271062
SkypeEndpoint.ping
test
def ping(self, timeout=12): """ Send a keep-alive request for the endpoint. Args: timeout (int): maximum amount of time for the endpoint to stay active """ self.conn("POST", "{0}/users/ME/endpoints/{1}/active".format(self.conn.msgsHost, self.id), au...
python
{ "resource": "" }
q271063
SkypeChats.recent
test
def recent(self): """ Retrieve a selection of conversations with the most recent activity, and store them in the cache. Each conversation is only retrieved once, so subsequent calls will retrieve older conversations. Returns: :class:`SkypeChat` list: collection of recent co...
python
{ "resource": "" }
q271064
SkypeChats.chat
test
def chat(self, id): """ Get a single conversation by identifier. Args: id (str): single or group chat identifier """ json = self.skype.conn("GET", "{0}/users/ME/conversations/{1}".format(self.skype.conn.msgsHost, id), auth=SkypeConnecti...
python
{ "resource": "" }
q271065
SkypeChats.create
test
def create(self, members=(), admins=()): """ Create a new group chat with the given users. The current user is automatically added to the conversation as an admin. Any other admin identifiers must also be present in the member list. Args: members (str list): user i...
python
{ "resource": "" }
q271066
SkypeUtils.userToId
test
def userToId(url): """ Extract the username from a contact URL. Matches addresses containing ``users/<user>`` or ``users/ME/contacts/<user>``. Args: url (str): Skype API URL Returns: str: extracted identifier """ match = re.search(r"user...
python
{ "resource": "" }
q271067
SkypeUtils.chatToId
test
def chatToId(url): """ Extract the conversation ID from a conversation URL. Matches addresses containing ``conversations/<chat>``. Args: url (str): Skype API URL Returns: str: extracted identifier """ match = re.search(r"conversations/([...
python
{ "resource": "" }
q271068
SkypeUtils.exhaust
test
def exhaust(fn, transform=None, *args, **kwargs): """ Repeatedly call a function, starting with init, until false-y, yielding each item in turn. The ``transform`` parameter can be used to map a collection to another format, for example iterating over a :class:`dict` by value rather than...
python
{ "resource": "" }
q271069
u
test
def u(text, encoding='utf-8'): "Return unicode text, no matter what" if isinstance(text, six.binary_type): text = text.decode(encoding) # it's already unicode text = text.replace('\r\n', '\n') return text
python
{ "resource": "" }
q271070
detect_format
test
def detect_format(text, handlers): """ Figure out which handler to use, based on metadata. Returns a handler instance or None. ``text`` should be unicode text about to be parsed. ``handlers`` is a dictionary where keys are opening delimiters and values are handler instances. """ for p...
python
{ "resource": "" }
q271071
parse
test
def parse(text, encoding='utf-8', handler=None, **defaults): """ Parse text with frontmatter, return metadata and content. Pass in optional metadata defaults as keyword args. If frontmatter is not found, returns an empty metadata dictionary (or defaults) and original text content. :: ...
python
{ "resource": "" }
q271072
Post.to_dict
test
def to_dict(self): "Post as a dict, for serializing" d = self.metadata.copy() d['content'] = self.content return d
python
{ "resource": "" }
q271073
YAMLHandler.load
test
def load(self, fm, **kwargs): """ Parse YAML front matter. This uses yaml.SafeLoader by default. """ kwargs.setdefault('Loader', SafeLoader) return yaml.load(fm, **kwargs)
python
{ "resource": "" }
q271074
YAMLHandler.export
test
def export(self, metadata, **kwargs): """ Export metadata as YAML. This uses yaml.SafeDumper by default. """ kwargs.setdefault('Dumper', SafeDumper) kwargs.setdefault('default_flow_style', False) kwargs.setdefault('allow_unicode', True) metadata = yaml.dump(metad...
python
{ "resource": "" }
q271075
JSONHandler.export
test
def export(self, metadata, **kwargs): "Turn metadata into JSON" kwargs.setdefault('indent', 4) metadata = json.dumps(metadata, **kwargs) return u(metadata)
python
{ "resource": "" }
q271076
WikiList._match
test
def _match(self): """Return the match object for the current list.""" cache_match, cache_string = self._match_cache string = self.string if cache_string == string: return cache_match cache_match = fullmatch( LIST_PATTERN_FORMAT.replace(b'{pattern}', self.p...
python
{ "resource": "" }
q271077
WikiList.items
test
def items(self) -> List[str]: """Return items as a list of strings. Don't include sub-items and the start pattern. """ items = [] # type: List[str] append = items.append string = self.string match = self._match ms = match.start() for s, e in matc...
python
{ "resource": "" }
q271078
WikiList.sublists
test
def sublists( self, i: int = None, pattern: str = None ) -> List['WikiList']: """Return the Lists inside the item with the given index. :param i: The index if the item which its sub-lists are desired. The performance is likely to be better if `i` is None. :param pattern...
python
{ "resource": "" }
q271079
WikiList.convert
test
def convert(self, newstart: str) -> None: """Convert to another list type by replacing starting pattern.""" match = self._match ms = match.start() for s, e in reversed(match.spans('pattern')): self[s - ms:e - ms] = newstart self.pattern = escape(newstart)
python
{ "resource": "" }
q271080
SubWikiTextWithArgs.arguments
test
def arguments(self) -> List[Argument]: """Parse template content. Create self.name and self.arguments.""" shadow = self._shadow split_spans = self._args_matcher(shadow).spans('arg') if not split_spans: return [] arguments = [] arguments_append = arguments.appe...
python
{ "resource": "" }
q271081
SubWikiTextWithArgs.lists
test
def lists(self, pattern: str = None) -> List[WikiList]: """Return the lists in all arguments. For performance reasons it is usually preferred to get a specific Argument and use the `lists` method of that argument instead. """ return [ lst for arg in self.arguments fo...
python
{ "resource": "" }
q271082
_plant_trie
test
def _plant_trie(strings: _List[str]) -> dict: """Create a Trie out of a list of words and return an atomic regex pattern. The corresponding Regex should match much faster than a simple Regex union. """ # plant the trie trie = {} for string in strings: d = trie for char in string...
python
{ "resource": "" }
q271083
_pattern
test
def _pattern(trie: dict) -> str: """Convert a trie to a regex pattern.""" if '' in trie: if len(trie) == 1: return '' optional = True del trie[''] else: optional = False subpattern_to_chars = _defaultdict(list) for char, sub_trie in trie.items(): ...
python
{ "resource": "" }
q271084
WikiText._check_index
test
def _check_index(self, key: Union[slice, int]) -> (int, int): """Return adjusted start and stop index as tuple. Used in __setitem__ and __delitem__. """ ss, se = self._span if isinstance(key, int): if key < 0: key += se - ss if key < ...
python
{ "resource": "" }
q271085
WikiText.insert
test
def insert(self, index: int, string: str) -> None: """Insert the given string before the specified index. This method has the same effect as ``self[index:index] = string``; it only avoids some condition checks as it rules out the possibility of the key being an slice, or the need to shr...
python
{ "resource": "" }
q271086
WikiText._atomic_partition
test
def _atomic_partition(self, char: int) -> Tuple[str, str, str]: """Partition self.string where `char`'s not in atomic sub-spans.""" s, e = self._span index = self._shadow.find(char) if index == -1: return self._lststr[0][s:e], '', '' lststr0 = self._lststr[0] ...
python
{ "resource": "" }
q271087
WikiText._subspans
test
def _subspans(self, type_: str) -> List[List[int]]: """Return all the sub-span including self._span.""" return self._type_to_spans[type_]
python
{ "resource": "" }
q271088
WikiText._shrink_update
test
def _shrink_update(self, rmstart: int, rmstop: int) -> None: """Update self._type_to_spans according to the removed span. Warning: If an operation involves both _shrink_update and _insert_update, you might wanna consider doing the _insert_update before the _shrink_update as this functio...
python
{ "resource": "" }
q271089
WikiText._insert_update
test
def _insert_update(self, index: int, length: int) -> None: """Update self._type_to_spans according to the added length.""" ss, se = self._span for spans in self._type_to_spans.values(): for span in spans: if index < span[1] or span[1] == index == se: ...
python
{ "resource": "" }
q271090
WikiText.nesting_level
test
def nesting_level(self) -> int: """Return the nesting level of self. The minimum nesting_level is 0. Being part of any Template or ParserFunction increases the level by one. """ ss, se = self._span level = 0 type_to_spans = self._type_to_spans for type_ i...
python
{ "resource": "" }
q271091
WikiText._shadow
test
def _shadow(self) -> bytearray: """Return a copy of self.string with specific sub-spans replaced. Comments blocks are replaced by spaces. Other sub-spans are replaced by underscores. The replaced sub-spans are: ( 'Template', 'WikiLink', 'ParserFunction', 'ExtensionTag', ...
python
{ "resource": "" }
q271092
WikiText._ext_link_shadow
test
def _ext_link_shadow(self): """Replace the invalid chars of SPAN_PARSER_TYPES with b'_'. For comments, all characters are replaced, but for ('Template', 'ParserFunction', 'Parameter') only invalid characters are replaced. """ ss, se = self._span string = self._lststr[0][...
python
{ "resource": "" }
q271093
WikiText._pp_type_to_spans
test
def _pp_type_to_spans(self) -> Dict[str, List[List[int]]]: """Create the arguments for the parse function used in pformat method. Only return sub-spans and change the them to fit the new scope, i.e self.string. """ ss, se = self._span if ss == 0 and se == len(self._lstst...
python
{ "resource": "" }
q271094
WikiText.pprint
test
def pprint(self, indent: str = ' ', remove_comments=False): """Deprecated, use self.pformat instead.""" warn( 'pprint method is deprecated, use pformat instead.', DeprecationWarning, ) return self.pformat(indent, remove_comments)
python
{ "resource": "" }
q271095
WikiText.parameters
test
def parameters(self) -> List['Parameter']: """Return a list of parameter objects.""" _lststr = self._lststr _type_to_spans = self._type_to_spans return [ Parameter(_lststr, _type_to_spans, span, 'Parameter') for span in self._subspans('Parameter')]
python
{ "resource": "" }
q271096
WikiText.parser_functions
test
def parser_functions(self) -> List['ParserFunction']: """Return a list of parser function objects.""" _lststr = self._lststr _type_to_spans = self._type_to_spans return [ ParserFunction(_lststr, _type_to_spans, span, 'ParserFunction') for span in self._subspans('P...
python
{ "resource": "" }
q271097
WikiText.templates
test
def templates(self) -> List['Template']: """Return a list of templates as template objects.""" _lststr = self._lststr _type_to_spans = self._type_to_spans return [ Template(_lststr, _type_to_spans, span, 'Template') for span in self._subspans('Template')]
python
{ "resource": "" }
q271098
WikiText.wikilinks
test
def wikilinks(self) -> List['WikiLink']: """Return a list of wikilink objects.""" _lststr = self._lststr _type_to_spans = self._type_to_spans return [ WikiLink(_lststr, _type_to_spans, span, 'WikiLink') for span in self._subspans('WikiLink')]
python
{ "resource": "" }
q271099
WikiText.comments
test
def comments(self) -> List['Comment']: """Return a list of comment objects.""" _lststr = self._lststr _type_to_spans = self._type_to_spans return [ Comment(_lststr, _type_to_spans, span, 'Comment') for span in self._subspans('Comment')]
python
{ "resource": "" }