File: xldate.pyi

package info (click to toggle)
python-canmatrix 1.2~github-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,012 kB
  • sloc: xml: 30,201; python: 14,631; makefile: 31; sh: 7
file content (22 lines) | stat: -rw-r--r-- 724 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Stubs for xlrd.xldate (Python 3)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.

from typing import Any

epoch_1904: Any
epoch_1900: Any
epoch_1900_minus_1: Any

class XLDateError(ValueError): ...
class XLDateNegative(XLDateError): ...
class XLDateAmbiguous(XLDateError): ...
class XLDateTooLarge(XLDateError): ...
class XLDateBadDatemode(XLDateError): ...
class XLDateBadTuple(XLDateError): ...

def xldate_as_tuple(xldate: Any, datemode: Any): ...
def xldate_as_datetime(xldate: Any, datemode: Any): ...
def xldate_from_date_tuple(date_tuple: Any, datemode: Any): ...
def xldate_from_time_tuple(time_tuple: Any): ...
def xldate_from_datetime_tuple(datetime_tuple: Any, datemode: Any): ...