1
0
Fork 0
tinygrab/docs/_source/locale/en/LC_MESSAGES/tinygrad.po

1076 lines
36 KiB
Plaintext

# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, Jeff Moe
# This file is distributed under the same license as the tinygrab package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: tinygrab 0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-12-04 21:55-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: en\n"
"Language-Team: en <LL@li.org>\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.13.1\n"
#: ../../../_source/tinygrad.rst:9
msgid "Contents:"
msgstr ""
#: ../../../_source/tinygrad.rst:3
msgid "tinygrad"
msgstr ""
#: ../../../_source/tinygrad.rst:5
msgid "``tinygrad`` with crufty comments added by AI."
msgstr ""
#: ../../../_source/tinygrad.rst:7
msgid "You want the upstream tinygrad repo, not this one."
msgstr ""
#: ../../../_source/tinygrad.rst:15
msgid "tinygrad module"
msgstr ""
#: ../../../_source/tinygrad.rst:23
msgid "tinygrad.Device"
msgstr ""
#: ../../../_source/tinygrad.rst:30
msgid "tinygrad.Tensor"
msgstr ""
#: ../../../_source/tinygrad.rst:37
msgid "tinygrad.TinyJit"
msgstr ""
#: of tinygrad.jit.TinyJit:1
msgid "Abstract base class for generic types."
msgstr ""
#: of tinygrad.jit.TinyJit:3
msgid ""
"A generic type is typically declared by inheriting from this class "
"parameterized with one or more type variables. For example, a generic "
"mapping type might be defined as::"
msgstr ""
#: of tinygrad.jit.TinyJit:12
msgid "This class can then be used as follows::"
msgstr ""
#: ../../../_source/tinygrad.rst:44
msgid "tinygrad.Variable"
msgstr ""
#: ../../../_source/tinygrad.rst:51
msgid "tinygrad.codegen"
msgstr ""
#: ../../../_source/tinygrad.rst:58
msgid "tinygrad.device"
msgstr ""
#: ../../../_source/tinygrad.rst:65
msgid "tinygrad.dtypes"
msgstr ""
#: ../../../_source/tinygrad.rst:72
msgid "tinygrad.features"
msgstr ""
#: ../../../_source/tinygrad.rst:79
msgid "tinygrad.graph"
msgstr ""
#: ../../../_source/tinygrad.rst:86
msgid "tinygrad.helpers"
msgstr ""
#: ../../../../docstring of tinygrad.helpers.DType.itemsize:1
msgid "Alias for field number 1"
msgstr ""
#: ../../../../docstring of tinygrad.helpers.DType.name:1
msgid "Alias for field number 2"
msgstr ""
#: ../../../../docstring of tinygrad.helpers.DType.np:1
msgid "Alias for field number 3"
msgstr ""
#: ../../../../docstring of tinygrad.helpers.DType.priority:1
msgid "Alias for field number 0"
msgstr ""
#: ../../../../docstring of tinygrad.helpers.DType.sz:1
msgid "Alias for field number 4"
msgstr ""
#: ../../../_source/tinygrad.rst:93
msgid "tinygrad.jit"
msgstr ""
#: ../../../_source/tinygrad.rst:100
msgid "tinygrad.lazy"
msgstr ""
#: ../../../_source/tinygrad.rst:107
msgid "tinygrad.mlops"
msgstr ""
#: ../../../_source/tinygrad.rst:114
msgid "tinygrad.ops"
msgstr ""
#: ../../../_source/tinygrad.rst:121
msgid "tinygrad.realize"
msgstr ""
#: ../../../_source/tinygrad.rst:128
msgid "tinygrad.shape"
msgstr ""
#: ../../../_source/tinygrad.rst:135
msgid "tinygrad.tensor"
msgstr ""
#: ../../../_source/tinygrad.rst:142
msgid "tinygrad.__builtins__"
msgstr ""
#: ../../../../docstring of tinygrad.__builtins__:1
msgid ""
"dict() -> new empty dictionary dict(mapping) -> new dictionary initialized "
"from a mapping object's"
msgstr ""
#: ../../../../docstring of tinygrad.__builtins__:3
msgid "(key, value) pairs"
msgstr ""
#: ../../../../docstring of tinygrad.__builtins__:6
msgid "dict(iterable) -> new dictionary initialized as if via:"
msgstr ""
#: ../../../../docstring of tinygrad.__builtins__:5
msgid "d = {} for k, v in iterable:"
msgstr ""
#: ../../../../docstring of tinygrad.__builtins__:7
msgid "d[k] = v"
msgstr ""
#: ../../../../docstring of tinygrad.__builtins__:8
msgid "dict(**kwargs) -> new dictionary initialized with the name=value pairs"
msgstr ""
#: ../../../../docstring of tinygrad.__builtins__:9
msgid "in the keyword argument list. For example: dict(one=1, two=2)"
msgstr ""
#: ../../../../docstring of tinygrad.__builtins__.fromkeys:1
msgid ""
"Create a new dictionary with keys from iterable and values set to value."
msgstr ""
#: ../../../../docstring of tinygrad.__builtins__.get:1
#: tinygrad.__builtins__.setdefault:3
msgid "Return the value for key if key is in the dictionary, else default."
msgstr ""
#: ../../../../docstring of tinygrad.__builtins__.pop:1
msgid ""
"If the key is not found, return the default if given; otherwise, raise a "
"KeyError."
msgstr ""
#: ../../../../docstring of tinygrad.__builtins__.popitem:1
msgid "Remove and return a (key, value) pair as a 2-tuple."
msgstr ""
#: ../../../../docstring of tinygrad.__builtins__.popitem:3
msgid ""
"Pairs are returned in LIFO (last-in, first-out) order. Raises KeyError if "
"the dict is empty."
msgstr ""
#: ../../../../docstring of tinygrad.__builtins__.setdefault:1
msgid "Insert key with a value of default if key is not in the dictionary."
msgstr ""
#: ../../../../docstring of tinygrad.__builtins__.update:1
msgid ""
"If E is present and has a .keys() method, then does: for k in E: D[k] = "
"E[k] If E is present and lacks a .keys() method, then does: for k, v in E: "
"D[k] = v In either case, this is followed by: for k in F: D[k] = F[k]"
msgstr ""
#: ../../../_source/tinygrad.rst:149
msgid "tinygrad.__cached__"
msgstr ""
#: ../../../../docstring of tinygrad.__cached__:1 tinygrad.__file__:1
#: tinygrad.__name__:1 tinygrad.__package__:1
msgid "str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str"
msgstr ""
#: ../../../../docstring of tinygrad.__cached__:4 tinygrad.__file__:4
#: tinygrad.__name__:4 tinygrad.__package__:4
msgid ""
"Create a new string object from the given object. If encoding or errors is "
"specified, then the object must expose a data buffer that will be decoded "
"using the given encoding and error handler. Otherwise, returns the result of "
"object.__str__() (if defined) or repr(object). encoding defaults to sys."
"getdefaultencoding(). errors defaults to 'strict'."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.capitalize:1
#: tinygrad.__file__.capitalize:1 tinygrad.__name__.capitalize:1
#: tinygrad.__package__.capitalize:1
msgid "Return a capitalized version of the string."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.capitalize:3
#: tinygrad.__file__.capitalize:3 tinygrad.__name__.capitalize:3
#: tinygrad.__package__.capitalize:3
msgid ""
"More specifically, make the first character have upper case and the rest "
"lower case."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.casefold:1
#: tinygrad.__file__.casefold:1 tinygrad.__name__.casefold:1
#: tinygrad.__package__.casefold:1
msgid "Return a version of the string suitable for caseless comparisons."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.center:1
#: tinygrad.__file__.center:1 tinygrad.__name__.center:1
#: tinygrad.__package__.center:1
msgid "Return a centered string of length width."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.center:3
#: tinygrad.__cached__.ljust:3 tinygrad.__cached__.rjust:3
#: tinygrad.__file__.center:3 tinygrad.__file__.ljust:3
#: tinygrad.__file__.rjust:3 tinygrad.__name__.center:3
#: tinygrad.__name__.ljust:3 tinygrad.__name__.rjust:3
#: tinygrad.__package__.center:3 tinygrad.__package__.ljust:3
#: tinygrad.__package__.rjust:3
msgid ""
"Padding is done using the specified fill character (default is a space)."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.count:1
#: tinygrad.__file__.count:1 tinygrad.__name__.count:1
#: tinygrad.__package__.count:1
msgid ""
"Return the number of non-overlapping occurrences of substring sub in string "
"S[start:end]. Optional arguments start and end are interpreted as in slice "
"notation."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.encode:1
#: tinygrad.__file__.encode:1 tinygrad.__name__.encode:1
#: tinygrad.__package__.encode:1
msgid "Encode the string using the codec registered for encoding."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.encode:3
#: tinygrad.__file__.encode:3 tinygrad.__name__.encode:3
#: tinygrad.__package__.encode:3
msgid "encoding"
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.encode:4
#: tinygrad.__file__.encode:4 tinygrad.__name__.encode:4
#: tinygrad.__package__.encode:4
msgid "The encoding in which to encode the string."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.encode:9
#: tinygrad.__file__.encode:9 tinygrad.__name__.encode:9
#: tinygrad.__package__.encode:9
msgid "errors"
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.encode:6
#: tinygrad.__file__.encode:6 tinygrad.__name__.encode:6
#: tinygrad.__package__.encode:6
msgid ""
"The error handling scheme to use for encoding errors. The default is "
"'strict' meaning that encoding errors raise a UnicodeEncodeError. Other "
"possible values are 'ignore', 'replace' and 'xmlcharrefreplace' as well as "
"any other name registered with codecs.register_error that can handle "
"UnicodeEncodeErrors."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.endswith:1
#: tinygrad.__file__.endswith:1 tinygrad.__name__.endswith:1
#: tinygrad.__package__.endswith:1
msgid ""
"Return True if S ends with the specified suffix, False otherwise. With "
"optional start, test S beginning at that position. With optional end, stop "
"comparing S at that position. suffix can also be a tuple of strings to try."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.expandtabs:1
#: tinygrad.__file__.expandtabs:1 tinygrad.__name__.expandtabs:1
#: tinygrad.__package__.expandtabs:1
msgid "Return a copy where all tab characters are expanded using spaces."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.expandtabs:3
#: tinygrad.__file__.expandtabs:3 tinygrad.__name__.expandtabs:3
#: tinygrad.__package__.expandtabs:3
msgid "If tabsize is not given, a tab size of 8 characters is assumed."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.find:1
#: tinygrad.__cached__.index:1 tinygrad.__file__.find:1
#: tinygrad.__file__.index:1 tinygrad.__name__.find:1 tinygrad.__name__.index:1
#: tinygrad.__package__.find:1 tinygrad.__package__.index:1
msgid ""
"Return the lowest index in S where substring sub is found, such that sub is "
"contained within S[start:end]. Optional arguments start and end are "
"interpreted as in slice notation."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.find:5
#: tinygrad.__cached__.rfind:5 tinygrad.__file__.find:5
#: tinygrad.__file__.rfind:5 tinygrad.__name__.find:5 tinygrad.__name__.rfind:5
#: tinygrad.__package__.find:5 tinygrad.__package__.rfind:5
msgid "Return -1 on failure."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.format:1
#: tinygrad.__file__.format:1 tinygrad.__name__.format:1
#: tinygrad.__package__.format:1
msgid ""
"Return a formatted version of S, using substitutions from args and kwargs. "
"The substitutions are identified by braces ('{' and '}')."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.format_map:1
#: tinygrad.__file__.format_map:1 tinygrad.__name__.format_map:1
#: tinygrad.__package__.format_map:1
msgid ""
"Return a formatted version of S, using substitutions from mapping. The "
"substitutions are identified by braces ('{' and '}')."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.index:5
#: tinygrad.__cached__.rindex:5 tinygrad.__file__.index:5
#: tinygrad.__file__.rindex:5 tinygrad.__name__.index:5
#: tinygrad.__name__.rindex:5 tinygrad.__package__.index:5
#: tinygrad.__package__.rindex:5
msgid "Raises ValueError when the substring is not found."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.isalnum:1
#: tinygrad.__file__.isalnum:1 tinygrad.__name__.isalnum:1
#: tinygrad.__package__.isalnum:1
msgid "Return True if the string is an alpha-numeric string, False otherwise."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.isalnum:3
#: tinygrad.__file__.isalnum:3 tinygrad.__name__.isalnum:3
#: tinygrad.__package__.isalnum:3
msgid ""
"A string is alpha-numeric if all characters in the string are alpha-numeric "
"and there is at least one character in the string."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.isalpha:1
#: tinygrad.__file__.isalpha:1 tinygrad.__name__.isalpha:1
#: tinygrad.__package__.isalpha:1
msgid "Return True if the string is an alphabetic string, False otherwise."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.isalpha:3
#: tinygrad.__file__.isalpha:3 tinygrad.__name__.isalpha:3
#: tinygrad.__package__.isalpha:3
msgid ""
"A string is alphabetic if all characters in the string are alphabetic and "
"there is at least one character in the string."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.isascii:1
#: tinygrad.__file__.isascii:1 tinygrad.__name__.isascii:1
#: tinygrad.__package__.isascii:1
msgid "Return True if all characters in the string are ASCII, False otherwise."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.isascii:3
#: tinygrad.__file__.isascii:3 tinygrad.__name__.isascii:3
#: tinygrad.__package__.isascii:3
msgid ""
"ASCII characters have code points in the range U+0000-U+007F. Empty string "
"is ASCII too."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.isdecimal:1
#: tinygrad.__file__.isdecimal:1 tinygrad.__name__.isdecimal:1
#: tinygrad.__package__.isdecimal:1
msgid "Return True if the string is a decimal string, False otherwise."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.isdecimal:3
#: tinygrad.__file__.isdecimal:3 tinygrad.__name__.isdecimal:3
#: tinygrad.__package__.isdecimal:3
msgid ""
"A string is a decimal string if all characters in the string are decimal and "
"there is at least one character in the string."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.isdigit:1
#: tinygrad.__file__.isdigit:1 tinygrad.__name__.isdigit:1
#: tinygrad.__package__.isdigit:1
msgid "Return True if the string is a digit string, False otherwise."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.isdigit:3
#: tinygrad.__file__.isdigit:3 tinygrad.__name__.isdigit:3
#: tinygrad.__package__.isdigit:3
msgid ""
"A string is a digit string if all characters in the string are digits and "
"there is at least one character in the string."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.isidentifier:1
#: tinygrad.__file__.isidentifier:1 tinygrad.__name__.isidentifier:1
#: tinygrad.__package__.isidentifier:1
msgid ""
"Return True if the string is a valid Python identifier, False otherwise."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.isidentifier:3
#: tinygrad.__file__.isidentifier:3 tinygrad.__name__.isidentifier:3
#: tinygrad.__package__.isidentifier:3
msgid ""
"Call keyword.iskeyword(s) to test whether string s is a reserved identifier, "
"such as \"def\" or \"class\"."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.islower:1
#: tinygrad.__file__.islower:1 tinygrad.__name__.islower:1
#: tinygrad.__package__.islower:1
msgid "Return True if the string is a lowercase string, False otherwise."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.islower:3
#: tinygrad.__file__.islower:3 tinygrad.__name__.islower:3
#: tinygrad.__package__.islower:3
msgid ""
"A string is lowercase if all cased characters in the string are lowercase "
"and there is at least one cased character in the string."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.isnumeric:1
#: tinygrad.__file__.isnumeric:1 tinygrad.__name__.isnumeric:1
#: tinygrad.__package__.isnumeric:1
msgid "Return True if the string is a numeric string, False otherwise."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.isnumeric:3
#: tinygrad.__file__.isnumeric:3 tinygrad.__name__.isnumeric:3
#: tinygrad.__package__.isnumeric:3
msgid ""
"A string is numeric if all characters in the string are numeric and there is "
"at least one character in the string."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.isprintable:1
#: tinygrad.__file__.isprintable:1 tinygrad.__name__.isprintable:1
#: tinygrad.__package__.isprintable:1
msgid "Return True if the string is printable, False otherwise."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.isprintable:3
#: tinygrad.__file__.isprintable:3 tinygrad.__name__.isprintable:3
#: tinygrad.__package__.isprintable:3
msgid ""
"A string is printable if all of its characters are considered printable in "
"repr() or if it is empty."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.isspace:1
#: tinygrad.__file__.isspace:1 tinygrad.__name__.isspace:1
#: tinygrad.__package__.isspace:1
msgid "Return True if the string is a whitespace string, False otherwise."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.isspace:3
#: tinygrad.__file__.isspace:3 tinygrad.__name__.isspace:3
#: tinygrad.__package__.isspace:3
msgid ""
"A string is whitespace if all characters in the string are whitespace and "
"there is at least one character in the string."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.istitle:1
#: tinygrad.__file__.istitle:1 tinygrad.__name__.istitle:1
#: tinygrad.__package__.istitle:1
msgid "Return True if the string is a title-cased string, False otherwise."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.istitle:3
#: tinygrad.__file__.istitle:3 tinygrad.__name__.istitle:3
#: tinygrad.__package__.istitle:3
msgid ""
"In a title-cased string, upper- and title-case characters may only follow "
"uncased characters and lowercase characters only cased ones."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.isupper:1
#: tinygrad.__file__.isupper:1 tinygrad.__name__.isupper:1
#: tinygrad.__package__.isupper:1
msgid "Return True if the string is an uppercase string, False otherwise."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.isupper:3
#: tinygrad.__file__.isupper:3 tinygrad.__name__.isupper:3
#: tinygrad.__package__.isupper:3
msgid ""
"A string is uppercase if all cased characters in the string are uppercase "
"and there is at least one cased character in the string."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.join:1 tinygrad.__file__.join:1
#: tinygrad.__name__.join:1 tinygrad.__package__.join:1
msgid "Concatenate any number of strings."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.join:3 tinygrad.__file__.join:3
#: tinygrad.__name__.join:3 tinygrad.__package__.join:3
msgid ""
"The string whose method is called is inserted in between each given string. "
"The result is returned as a new string."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.join:6 tinygrad.__file__.join:6
#: tinygrad.__name__.join:6 tinygrad.__package__.join:6
msgid "Example: '.'.join(['ab', 'pq', 'rs']) -> 'ab.pq.rs'"
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.ljust:1
#: tinygrad.__file__.ljust:1 tinygrad.__name__.ljust:1
#: tinygrad.__package__.ljust:1
msgid "Return a left-justified string of length width."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.lower:1
#: tinygrad.__file__.lower:1 tinygrad.__name__.lower:1
#: tinygrad.__package__.lower:1
msgid "Return a copy of the string converted to lowercase."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.lstrip:1
#: tinygrad.__file__.lstrip:1 tinygrad.__name__.lstrip:1
#: tinygrad.__package__.lstrip:1
msgid "Return a copy of the string with leading whitespace removed."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.lstrip:3
#: tinygrad.__cached__.rstrip:3 tinygrad.__cached__.strip:3
#: tinygrad.__file__.lstrip:3 tinygrad.__file__.rstrip:3
#: tinygrad.__file__.strip:3 tinygrad.__name__.lstrip:3
#: tinygrad.__name__.rstrip:3 tinygrad.__name__.strip:3
#: tinygrad.__package__.lstrip:3 tinygrad.__package__.rstrip:3
#: tinygrad.__package__.strip:3
msgid "If chars is given and not None, remove characters in chars instead."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.maketrans:1
#: tinygrad.__file__.maketrans:1 tinygrad.__name__.maketrans:1
#: tinygrad.__package__.maketrans:1
msgid "Return a translation table usable for str.translate()."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.maketrans:3
#: tinygrad.__file__.maketrans:3 tinygrad.__name__.maketrans:3
#: tinygrad.__package__.maketrans:3
msgid ""
"If there is only one argument, it must be a dictionary mapping Unicode "
"ordinals (integers) or characters to Unicode ordinals, strings or None. "
"Character keys will be then converted to ordinals. If there are two "
"arguments, they must be strings of equal length, and in the resulting "
"dictionary, each character in x will be mapped to the character at the same "
"position in y. If there is a third argument, it must be a string, whose "
"characters will be mapped to None in the result."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.partition:1
#: tinygrad.__cached__.rpartition:1 tinygrad.__file__.partition:1
#: tinygrad.__file__.rpartition:1 tinygrad.__name__.partition:1
#: tinygrad.__name__.rpartition:1 tinygrad.__package__.partition:1
#: tinygrad.__package__.rpartition:1
msgid "Partition the string into three parts using the given separator."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.partition:3
#: tinygrad.__file__.partition:3 tinygrad.__name__.partition:3
#: tinygrad.__package__.partition:3
msgid ""
"This will search for the separator in the string. If the separator is "
"found, returns a 3-tuple containing the part before the separator, the "
"separator itself, and the part after it."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.partition:7
#: tinygrad.__file__.partition:7 tinygrad.__name__.partition:7
#: tinygrad.__package__.partition:7
msgid ""
"If the separator is not found, returns a 3-tuple containing the original "
"string and two empty strings."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.removeprefix:1
#: tinygrad.__file__.removeprefix:1 tinygrad.__name__.removeprefix:1
#: tinygrad.__package__.removeprefix:1
msgid "Return a str with the given prefix string removed if present."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.removeprefix:3
#: tinygrad.__file__.removeprefix:3 tinygrad.__name__.removeprefix:3
#: tinygrad.__package__.removeprefix:3
msgid ""
"If the string starts with the prefix string, return string[len(prefix):]. "
"Otherwise, return a copy of the original string."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.removesuffix:1
#: tinygrad.__file__.removesuffix:1 tinygrad.__name__.removesuffix:1
#: tinygrad.__package__.removesuffix:1
msgid "Return a str with the given suffix string removed if present."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.removesuffix:3
#: tinygrad.__file__.removesuffix:3 tinygrad.__name__.removesuffix:3
#: tinygrad.__package__.removesuffix:3
msgid ""
"If the string ends with the suffix string and that suffix is not empty, "
"return string[:-len(suffix)]. Otherwise, return a copy of the original "
"string."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.replace:1
#: tinygrad.__file__.replace:1 tinygrad.__name__.replace:1
#: tinygrad.__package__.replace:1
msgid "Return a copy with all occurrences of substring old replaced by new."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.replace:5
#: tinygrad.__file__.replace:5 tinygrad.__name__.replace:5
#: tinygrad.__package__.replace:5
msgid "count"
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.replace:4
#: tinygrad.__file__.replace:4 tinygrad.__name__.replace:4
#: tinygrad.__package__.replace:4
msgid ""
"Maximum number of occurrences to replace. -1 (the default value) means "
"replace all occurrences."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.replace:7
#: tinygrad.__file__.replace:7 tinygrad.__name__.replace:7
#: tinygrad.__package__.replace:7
msgid ""
"If the optional argument count is given, only the first count occurrences "
"are replaced."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.rfind:1
#: tinygrad.__cached__.rindex:1 tinygrad.__file__.rfind:1
#: tinygrad.__file__.rindex:1 tinygrad.__name__.rfind:1
#: tinygrad.__name__.rindex:1 tinygrad.__package__.rfind:1
#: tinygrad.__package__.rindex:1
msgid ""
"Return the highest index in S where substring sub is found, such that sub is "
"contained within S[start:end]. Optional arguments start and end are "
"interpreted as in slice notation."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.rjust:1
#: tinygrad.__file__.rjust:1 tinygrad.__name__.rjust:1
#: tinygrad.__package__.rjust:1
msgid "Return a right-justified string of length width."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.rpartition:3
#: tinygrad.__file__.rpartition:3 tinygrad.__name__.rpartition:3
#: tinygrad.__package__.rpartition:3
msgid ""
"This will search for the separator in the string, starting at the end. If "
"the separator is found, returns a 3-tuple containing the part before the "
"separator, the separator itself, and the part after it."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.rpartition:7
#: tinygrad.__file__.rpartition:7 tinygrad.__name__.rpartition:7
#: tinygrad.__package__.rpartition:7
msgid ""
"If the separator is not found, returns a 3-tuple containing two empty "
"strings and the original string."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.rsplit:1
#: tinygrad.__cached__.split:1 tinygrad.__file__.rsplit:1
#: tinygrad.__file__.split:1 tinygrad.__name__.rsplit:1
#: tinygrad.__name__.split:1 tinygrad.__package__.rsplit:1
#: tinygrad.__package__.split:1
msgid ""
"Return a list of the substrings in the string, using sep as the separator "
"string."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.rsplit:7
#: tinygrad.__cached__.split:7 tinygrad.__file__.rsplit:7
#: tinygrad.__file__.split:7 tinygrad.__name__.rsplit:7
#: tinygrad.__name__.split:7 tinygrad.__package__.rsplit:7
#: tinygrad.__package__.split:7
msgid "sep"
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.rsplit:4
#: tinygrad.__cached__.split:4 tinygrad.__file__.rsplit:4
#: tinygrad.__file__.split:4 tinygrad.__name__.rsplit:4
#: tinygrad.__name__.split:4 tinygrad.__package__.rsplit:4
#: tinygrad.__package__.split:4
msgid "The separator used to split the string."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.rsplit:6
#: tinygrad.__cached__.split:6 tinygrad.__file__.rsplit:6
#: tinygrad.__file__.split:6 tinygrad.__name__.rsplit:6
#: tinygrad.__name__.split:6 tinygrad.__package__.rsplit:6
#: tinygrad.__package__.split:6
msgid ""
"When set to None (the default value), will split on any whitespace character "
"(including \\\\n \\\\r \\\\t \\\\f and spaces) and will discard empty "
"strings from the result."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.rsplit:11
#: tinygrad.__cached__.split:11 tinygrad.__file__.rsplit:11
#: tinygrad.__file__.split:11 tinygrad.__name__.rsplit:11
#: tinygrad.__name__.split:11 tinygrad.__package__.rsplit:11
#: tinygrad.__package__.split:11
msgid "maxsplit"
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.rsplit:10
#: tinygrad.__cached__.split:10 tinygrad.__file__.rsplit:10
#: tinygrad.__file__.split:10 tinygrad.__name__.rsplit:10
#: tinygrad.__name__.split:10 tinygrad.__package__.rsplit:10
#: tinygrad.__package__.split:10
msgid ""
"Maximum number of splits (starting from the left). -1 (the default value) "
"means no limit."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.rsplit:13
#: tinygrad.__file__.rsplit:13 tinygrad.__name__.rsplit:13
#: tinygrad.__package__.rsplit:13
msgid "Splitting starts at the end of the string and works to the front."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.rstrip:1
#: tinygrad.__file__.rstrip:1 tinygrad.__name__.rstrip:1
#: tinygrad.__package__.rstrip:1
msgid "Return a copy of the string with trailing whitespace removed."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.split:13
#: tinygrad.__file__.split:13 tinygrad.__name__.split:13
#: tinygrad.__package__.split:13
msgid ""
"Note, str.split() is mainly useful for data that has been intentionally "
"delimited. With natural text that includes punctuation, consider using the "
"regular expression module."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.splitlines:1
#: tinygrad.__file__.splitlines:1 tinygrad.__name__.splitlines:1
#: tinygrad.__package__.splitlines:1
msgid "Return a list of the lines in the string, breaking at line boundaries."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.splitlines:3
#: tinygrad.__file__.splitlines:3 tinygrad.__name__.splitlines:3
#: tinygrad.__package__.splitlines:3
msgid ""
"Line breaks are not included in the resulting list unless keepends is given "
"and true."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.startswith:1
#: tinygrad.__file__.startswith:1 tinygrad.__name__.startswith:1
#: tinygrad.__package__.startswith:1
msgid ""
"Return True if S starts with the specified prefix, False otherwise. With "
"optional start, test S beginning at that position. With optional end, stop "
"comparing S at that position. prefix can also be a tuple of strings to try."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.strip:1
#: tinygrad.__file__.strip:1 tinygrad.__name__.strip:1
#: tinygrad.__package__.strip:1
msgid ""
"Return a copy of the string with leading and trailing whitespace removed."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.swapcase:1
#: tinygrad.__file__.swapcase:1 tinygrad.__name__.swapcase:1
#: tinygrad.__package__.swapcase:1
msgid ""
"Convert uppercase characters to lowercase and lowercase characters to "
"uppercase."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.title:1
#: tinygrad.__file__.title:1 tinygrad.__name__.title:1
#: tinygrad.__package__.title:1
msgid "Return a version of the string where each word is titlecased."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.title:3
#: tinygrad.__file__.title:3 tinygrad.__name__.title:3
#: tinygrad.__package__.title:3
msgid ""
"More specifically, words start with uppercased characters and all remaining "
"cased characters have lower case."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.translate:1
#: tinygrad.__file__.translate:1 tinygrad.__name__.translate:1
#: tinygrad.__package__.translate:1
msgid "Replace each character in the string using the given translation table."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.translate:5
#: tinygrad.__file__.translate:5 tinygrad.__name__.translate:5
#: tinygrad.__package__.translate:5
msgid "table"
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.translate:4
#: tinygrad.__file__.translate:4 tinygrad.__name__.translate:4
#: tinygrad.__package__.translate:4
msgid ""
"Translation table, which must be a mapping of Unicode ordinals to Unicode "
"ordinals, strings, or None."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.translate:7
#: tinygrad.__file__.translate:7 tinygrad.__name__.translate:7
#: tinygrad.__package__.translate:7
msgid ""
"The table must implement lookup/indexing via __getitem__, for instance a "
"dictionary or list. If this operation raises LookupError, the character is "
"left untouched. Characters mapped to None are deleted."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.upper:1
#: tinygrad.__file__.upper:1 tinygrad.__name__.upper:1
#: tinygrad.__package__.upper:1
msgid "Return a copy of the string converted to uppercase."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.zfill:1
#: tinygrad.__file__.zfill:1 tinygrad.__name__.zfill:1
#: tinygrad.__package__.zfill:1
msgid ""
"Pad a numeric string with zeros on the left, to fill a field of the given "
"width."
msgstr ""
#: ../../../../docstring of tinygrad.__cached__.zfill:3
#: tinygrad.__file__.zfill:3 tinygrad.__name__.zfill:3
#: tinygrad.__package__.zfill:3
msgid "The string is never truncated."
msgstr ""
#: ../../../_source/tinygrad.rst:156
msgid "tinygrad.__doc__"
msgstr ""
#: ../../../_source/tinygrad.rst:163
msgid "tinygrad.__file__"
msgstr ""
#: ../../../_source/tinygrad.rst:170
msgid "tinygrad.__loader__"
msgstr ""
#: of tinygrad.__loader__:1
msgid "Concrete implementation of SourceLoader using the file system."
msgstr ""
#: ../../../_source/tinygrad.rst:177
msgid "tinygrad.__name__"
msgstr ""
#: ../../../_source/tinygrad.rst:184
msgid "tinygrad.__package__"
msgstr ""
#: ../../../_source/tinygrad.rst:191
msgid "tinygrad.__path__"
msgstr ""
#: ../../../../docstring of tinygrad.__path__:1
msgid "Built-in mutable sequence."
msgstr ""
#: ../../../../docstring of tinygrad.__path__:3
msgid ""
"If no argument is given, the constructor creates a new empty list. The "
"argument must be an iterable if specified."
msgstr ""
#: ../../../../docstring of tinygrad.__path__.append:1
msgid "Append object to the end of the list."
msgstr ""
#: ../../../../docstring of tinygrad.__path__.clear:1
msgid "Remove all items from list."
msgstr ""
#: ../../../../docstring of tinygrad.__path__.copy:1
msgid "Return a shallow copy of the list."
msgstr ""
#: ../../../../docstring of tinygrad.__path__.count:1
msgid "Return number of occurrences of value."
msgstr ""
#: ../../../../docstring of tinygrad.__path__.extend:1
msgid "Extend list by appending elements from the iterable."
msgstr ""
#: ../../../../docstring of tinygrad.__path__.index:1
msgid "Return first index of value."
msgstr ""
#: ../../../../docstring of tinygrad.__path__.index:3
#: tinygrad.__path__.remove:3
msgid "Raises ValueError if the value is not present."
msgstr ""
#: ../../../../docstring of tinygrad.__path__.insert:1
msgid "Insert object before index."
msgstr ""
#: ../../../../docstring of tinygrad.__path__.pop:1
msgid "Remove and return item at index (default last)."
msgstr ""
#: ../../../../docstring of tinygrad.__path__.pop:3
msgid "Raises IndexError if list is empty or index is out of range."
msgstr ""
#: ../../../../docstring of tinygrad.__path__.remove:1
msgid "Remove first occurrence of value."
msgstr ""
#: ../../../../docstring of tinygrad.__path__.reverse:1
msgid "Reverse *IN PLACE*."
msgstr ""
#: ../../../../docstring of tinygrad.__path__.sort:1
msgid "Sort the list in ascending order and return None."
msgstr ""
#: ../../../../docstring of tinygrad.__path__.sort:3
msgid ""
"The sort is in-place (i.e. the list itself is modified) and stable (i.e. the "
"order of two equal elements is maintained)."
msgstr ""
#: ../../../../docstring of tinygrad.__path__.sort:6
msgid ""
"If a key function is given, apply it once to each list item and sort them, "
"ascending or descending, according to their function values."
msgstr ""
#: ../../../../docstring of tinygrad.__path__.sort:9
msgid "The reverse flag can be set to sort in descending order."
msgstr ""
#: ../../../_source/tinygrad.rst:198
msgid "tinygrad.__spec__"
msgstr ""
#: of tinygrad.__spec__:1
msgid "The specification for a module, used for loading."
msgstr ""
#: of tinygrad.__spec__:3
msgid ""
"A module's spec is the source for information about the module. For data "
"associated with the module, including source, use the spec's loader."
msgstr ""
#: of tinygrad.__spec__:7
msgid ""
"`name` is the absolute name of the module. `loader` is the loader to use "
"when loading the module. `parent` is the name of the package the module is "
"in. The parent is derived from the name."
msgstr ""
#: of tinygrad.__spec__:11
msgid ""
"`is_package` determines if the module is considered a package or not. On "
"modules this is reflected by the `__path__` attribute."
msgstr ""
#: of tinygrad.__spec__:14
msgid ""
"`origin` is the specific location used by the loader from which to load the "
"module, if that information is available. When filename is set, origin will "
"match."
msgstr ""
#: of tinygrad.__spec__:18
msgid ""
"`has_location` indicates that a spec's \"origin\" reflects a location. When "
"this is True, `__file__` attribute of the module is set."
msgstr ""
#: of tinygrad.__spec__:21
msgid ""
"`cached` is the location of the cached bytecode file, if any. It "
"corresponds to the `__cached__` attribute."
msgstr ""
#: of tinygrad.__spec__:24
msgid ""
"`submodule_search_locations` is the sequence of path entries to search when "
"importing submodules. If set, is_package should be True--and False "
"otherwise."
msgstr ""
#: of tinygrad.__spec__:28
msgid ""
"Packages are simply modules that (may) have submodules. If a spec has a non-"
"None value in `submodule_search_locations`, the import system will consider "
"modules loaded from the spec as packages."
msgstr ""
#: of tinygrad.__spec__:32
msgid ""
"Only finders (see importlib.abc.MetaPathFinder and importlib.abc."
"PathEntryFinder) should modify ModuleSpec instances."
msgstr ""