emkornfield commented on a change in pull request #11302:
URL: https://github.com/apache/arrow/pull/11302#discussion_r721889385



##########
File path: cpp/src/arrow/python/datetime.cc
##########
@@ -71,6 +71,19 @@ bool MatchFixedOffset(const std::string& tz, 
util::string_view* sign,
   return iter == (tz.data() + tz.size());
 }
 
+static PyTypeObject MonthDayNanoTupleType = {0, 0};
+
+static PyStructSequence_Field MonthDayNanoField[] = {
+    {"months", "The number of months in the interval"},
+    {"days", "The number days in the interval"},
+    {"nanoseconds", "The number of nanoseconds in the interval"},
+    {nullptr, nullptr}};
+
+static PyStructSequence_Desc MonthDayNanoTupleDesc = {
+    "MonthDayNanoTuple", "A interval consistent of months, days and 
nanoseconds.",

Review comment:
       meant to say consisting




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to