File: xldate.pyi

package info (click to toggle)
python-canmatrix 0.9.3~github-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 10,896 kB
  • sloc: xml: 30,201; python: 12,472; makefile: 18; sh: 9
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): ...