diff options
author | Fred Drake <fdrake@acm.org> | 1998-04-28 14:28:57 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-04-28 14:28:57 (GMT) |
commit | 1c127e74af96bd49f7782ab453134a1f7ac4cd58 (patch) | |
tree | e0523a793b8b3695944320af3172132f2fab5415 /Doc/lib | |
parent | 6afad3792deb85c5462a0b5e4f48d04c6f81fc58 (diff) | |
download | cpython-1c127e74af96bd49f7782ab453134a1f7ac4cd58.zip cpython-1c127e74af96bd49f7782ab453134a1f7ac4cd58.tar.gz cpython-1c127e74af96bd49f7782ab453134a1f7ac4cd58.tar.bz2 |
calendar module section for the library reference, by Drew Csillag.
Diffstat (limited to 'Doc/lib')
-rw-r--r-- | Doc/lib/libcalendar.tex | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/Doc/lib/libcalendar.tex b/Doc/lib/libcalendar.tex new file mode 100644 index 0000000..1f3931e --- /dev/null +++ b/Doc/lib/libcalendar.tex @@ -0,0 +1,45 @@ +% This section was contributed by Drew Csillag <drew_csillag@geocities.com>. + +\section{Standard Module \module{calendar}} +\label{module-calendar} +\stmodindex{calendar} + + +This module allows you to output calendars like the \UNIX{} +\manpage{cal}{1} program. + +\begin{funcdesc}{isleap}{year} +Returns \code{1} if \var{year} is a leap year. +\end{funcdesc} + +\begin{funcdesc}{leapdays}{year1, year2} +Return the number of leap years in the range +[\var{year1}\ldots\var{year2}]. +\end{funcdesc} + +\begin{funcdesc}{weekday}{year, month, day} +Returns the day of the week (\code{0} is Monday) for \var{year} +(\code{1970}--\dots), \var{month} (\code{1}--\code{12}), \var{day} +(\code{1}--\code{31}). +\end{funcdesc} + +\begin{funcdesc}{monthrange}{year, month} +Returns weekday of first day of the month and number of days in month, +for the specified \var{year} and \var{month}. +\end{funcdesc} + +\begin{funcdesc}{monthcalendar}{year, month} +Returns a matrix representing a month's calendar. Each row represents +a week; days outside of the month a represented by zeros. +\end{funcdesc} + +\begin{funcdesc}{prmonth}{year, month\optional{, width\optional{, length}}} +Prints a month's calendar. If \var{width} is provided, it specifies +the width of the columns that the numbers are centered in. If +\var{length} is given, it specifies the number of lines that each +week will use. +\end{funcdesc} + +\begin{funcdesc}{prcal}{year} +Prints the calendar for the year \var{year}. +\end{funcdesc} |