summaryrefslogtreecommitdiff
path: root/Doc/library/datetime.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-11-29 17:41:05 +0000
committerGeorg Brandl <georg@python.org>2007-11-29 17:41:05 +0000
commit5c10664043448f1d27d7ce7eb67c2afe3f54b018 (patch)
treea5b3ada6978c46dc179e97011c02031bb4e9344e /Doc/library/datetime.rst
parentba956aebb96c38f1b8818189ed6ab18d5441313a (diff)
downloadcpython-git-5c10664043448f1d27d7ce7eb67c2afe3f54b018.tar.gz
Remove further mentions of long integers.
Diffstat (limited to 'Doc/library/datetime.rst')
-rw-r--r--Doc/library/datetime.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst
index e67c9eb17b..87a9bbdc0a 100644
--- a/Doc/library/datetime.rst
+++ b/Doc/library/datetime.rst
@@ -132,7 +132,7 @@ dates or times.
.. class:: timedelta([days[, seconds[, microseconds[, milliseconds[, minutes[, hours[, weeks]]]]]]])
- All arguments are optional and default to ``0``. Arguments may be ints, longs,
+ All arguments are optional and default to ``0``. Arguments may be integers
or floats, and may be positive or negative.
Only *days*, *seconds* and *microseconds* are stored internally. Arguments are
@@ -213,7 +213,7 @@ Supported operations:
| | == *t2* - *t3* and *t2* == *t1* + *t3* are |
| | true. (1) |
+--------------------------------+-----------------------------------------------+
-| ``t1 = t2 * i or t1 = i * t2`` | Delta multiplied by an integer or long. |
+| ``t1 = t2 * i or t1 = i * t2`` | Delta multiplied by an integer. |
| | Afterwards *t1* // i == *t2* is true, |
| | provided ``i != 0``. |
+--------------------------------+-----------------------------------------------+
@@ -282,7 +282,7 @@ systems.
.. class:: date(year, month, day)
- All arguments are required. Arguments may be ints or longs, in the following
+ All arguments are required. Arguments may be integers, in the following
ranges:
* ``MINYEAR <= year <= MAXYEAR``
@@ -503,8 +503,8 @@ Constructor:
.. class:: datetime(year, month, day[, hour[, minute[, second[, microsecond[, tzinfo]]]]])
The year, month and day arguments are required. *tzinfo* may be ``None``, or an
- instance of a :class:`tzinfo` subclass. The remaining arguments may be ints or
- longs, in the following ranges:
+ instance of a :class:`tzinfo` subclass. The remaining arguments may be integers,
+ in the following ranges:
* ``MINYEAR <= year <= MAXYEAR``
* ``1 <= month <= 12``
@@ -932,7 +932,7 @@ day, and subject to adjustment via a :class:`tzinfo` object.
.. class:: time(hour[, minute[, second[, microsecond[, tzinfo]]]])
All arguments are optional. *tzinfo* may be ``None``, or an instance of a
- :class:`tzinfo` subclass. The remaining arguments may be ints or longs, in the
+ :class:`tzinfo` subclass. The remaining arguments may be integers, in the
following ranges:
* ``0 <= hour < 24``