-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtime.po
More file actions
105 lines (78 loc) · 3.97 KB
/
Copy pathtime.po
File metadata and controls
105 lines (78 loc) · 3.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001 Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Danial Behzadi <dani.behzi@ubuntu.com>, 2025
# Revisto <theRevisto@gmail.com>, 2025
# Sepehr Rasouli <sepehrrasouli06@gmail.com>, 2026
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.14\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-08-18 04:30+0000\n"
"PO-Revision-Date: 2024-05-11 01:07+0000\n"
"Last-Translator: Sepehr Rasouli <sepehrrasouli06@gmail.com>, 2026\n"
"Language-Team: Persian (https://github.com/revisto/python-docs-fa/fa/)\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
msgid "PyTime C API"
msgstr ""
msgid "The clock C API provides access to system clocks. It is similar to the Python :mod:`time` module."
msgstr ""
msgid "For C API related to the :mod:`datetime` module, see :ref:`datetimeobjects`."
msgstr ""
msgid "Types"
msgstr ""
msgid "A timestamp or duration in nanoseconds, represented as a signed 64-bit integer."
msgstr ""
msgid "The reference point for timestamps depends on the clock used. For example, :c:func:`PyTime_Time` returns timestamps relative to the UNIX epoch."
msgstr ""
msgid "The supported range is around [-292.3 years; +292.3 years]. Using the Unix epoch (January 1st, 1970) as reference, the supported date range is around [1677-09-21; 2262-04-11]. The exact limits are exposed as constants:"
msgstr ""
msgid "Minimum value of :c:type:`PyTime_t`."
msgstr ""
msgid "Maximum value of :c:type:`PyTime_t`."
msgstr ""
msgid "Clock Functions"
msgstr ""
msgid "The following functions take a pointer to a :c:expr:`PyTime_t` that they set to the value of a particular clock. Details of each clock are given in the documentation of the corresponding Python function."
msgstr ""
msgid "The functions return ``0`` on success, or ``-1`` (with an exception set) on failure."
msgstr ""
msgid "On integer overflow, they set the :c:data:`PyExc_OverflowError` exception and set ``*result`` to the value clamped to the ``[PyTime_MIN; PyTime_MAX]`` range. (On current systems, integer overflows are likely caused by misconfigured system time.)"
msgstr ""
msgid "As any other C API (unless otherwise specified), the functions must be called with an :term:`attached thread state`."
msgstr ""
msgid "Read the monotonic clock. See :func:`time.monotonic` for important details on this clock."
msgstr ""
msgid "Read the performance counter. See :func:`time.perf_counter` for important details on this clock."
msgstr ""
msgid "Read the “wall clock” time. See :func:`time.time` for details important on this clock."
msgstr ""
msgid "Raw Clock Functions"
msgstr ""
msgid "Similar to clock functions, but don't set an exception on error and don't require the caller to have an :term:`attached thread state`."
msgstr ""
msgid "On success, the functions return ``0``."
msgstr ""
msgid "On failure, they set ``*result`` to ``0`` and return ``-1``, *without* setting an exception. To get the cause of the error, :term:`attach <attached thread state>` a :term:`thread state`, and call the regular (non-``Raw``) function. Note that the regular function may succeed after the ``Raw`` one failed."
msgstr ""
msgid "Similar to :c:func:`PyTime_Monotonic`, but don't set an exception on error and don't require an :term:`attached thread state`."
msgstr ""
msgid "Similar to :c:func:`PyTime_PerfCounter`, but don't set an exception on error and don't require an :term:`attached thread state`."
msgstr ""
msgid "Similar to :c:func:`PyTime_Time`, but don't set an exception on error and don't require an :term:`attached thread state`."
msgstr ""
msgid "Conversion functions"
msgstr ""
msgid "Convert a timestamp to a number of seconds as a C :c:expr:`double`."
msgstr ""
msgid "The function cannot fail, but note that :c:expr:`double` has limited accuracy for large values."
msgstr ""