summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTanaka Akira <[email protected]>2024-06-02 10:18:56 +0900
committerTanaka Akira <[email protected]>2024-06-02 10:18:56 +0900
commit56fe5ad7785c5c1a6f81d3ef63b44ab12b47301e (patch)
treecfd522e60aa9e5611032f30eebb78e6087615625
parentd03c61241a38cb16ed185d609af2d3dc69f66ba3 (diff)
Time internal representation comment removed.
-rw-r--r--time.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/time.c b/time.c
index 3304b2f4f4..035d32dd31 100644
--- a/time.c
+++ b/time.c
@@ -5725,16 +5725,6 @@ rb_time_zone_abbreviation(VALUE zone, VALUE time)
return rb_obj_as_string(abbr);
}
-/* Internal Details:
- *
- * Since Ruby 1.9.2, Time implementation uses a signed 63 bit integer or
- * Integer(T_BIGNUM), Rational.
- * The integer is a number of nanoseconds since the _Epoch_ which can
- * represent 1823-11-12 to 2116-02-20.
- * When Integer(T_BIGNUM) or Rational is used (before 1823, after 2116, under
- * nanosecond), Time works slower than when integer is used.
- */
-
//
void
Init_Time(void)