/usr/share/doc/phatch/html/other.relativedelta.html is in phatch-doc 0.2.7.1-3.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>relativedelta — Phatch 0.2 documentation</title>
<link rel="stylesheet" href="_static/default.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '0.2',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<link rel="top" title="Phatch 0.2 documentation" href="index.html" />
<link rel="up" title="other" href="other.html" />
<link rel="next" title="surd" href="other.surd.html" />
<link rel="prev" title="toasterbox" href="other.pyWx.toasterbox.html" />
</head>
<body>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="other.surd.html" title="surd"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="other.pyWx.toasterbox.html" title="toasterbox"
accesskey="P">previous</a> |</li>
<li><a href="index.html">Phatch 0.2 documentation</a> »</li>
<li><a href="other.html" accesskey="U">other</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<div class="section" id="module-other.relativedelta">
<span id="relativedelta"></span><h1>relativedelta<a class="headerlink" href="#module-other.relativedelta" title="Permalink to this headline">¶</a></h1>
<p>Copyright (c) 2003-2007 Gustavo Niemeyer <<a class="reference external" href="mailto:gustavo%40niemeyer.net">gustavo<span>@</span>niemeyer<span>.</span>net</a>></p>
<p>This module offers extensions to the standard python 2.3+
datetime module.</p>
<dl class="class">
<dt id="other.relativedelta.relativedelta">
<em class="property">class </em><tt class="descclassname">other.relativedelta.</tt><tt class="descname">relativedelta</tt><big>(</big><em>dt1=None</em>, <em>dt2=None</em>, <em>years=0</em>, <em>months=0</em>, <em>days=0</em>, <em>leapdays=0</em>, <em>weeks=0</em>, <em>hours=0</em>, <em>minutes=0</em>, <em>seconds=0</em>, <em>microseconds=0</em>, <em>year=None</em>, <em>month=None</em>, <em>day=None</em>, <em>weekday=None</em>, <em>yearday=None</em>, <em>nlyearday=None</em>, <em>hour=None</em>, <em>minute=None</em>, <em>second=None</em>, <em>microsecond=None</em><big>)</big><a class="headerlink" href="#other.relativedelta.relativedelta" title="Permalink to this definition">¶</a></dt>
<dd><p>The relativedelta type is based on the specification of the excelent
work done by M.-A. Lemburg in his mx.DateTime extension. However,
notice that this type does <em>NOT</em> implement the same algorithm as
his work. Do <em>NOT</em> expect it to behave like mx.DateTime’s counterpart.</p>
<p>There’s two different ways to build a relativedelta instance. The
first one is passing it two date/datetime classes:</p>
<blockquote>
<div>relativedelta(datetime1, datetime2)</div></blockquote>
<p>And the other way is to use the following keyword arguments:</p>
<blockquote>
<div><dl class="docutils">
<dt>year, month, day, hour, minute, second, microsecond:</dt>
<dd>Absolute information.</dd>
<dt>years, months, weeks, days, hours, minutes, seconds, microseconds:</dt>
<dd>Relative information, may be negative.</dd>
<dt>weekday:</dt>
<dd>One of the weekday instances (MO, TU, etc). These instances may
receive a parameter N, specifying the Nth weekday, which could
be positive or negative (like MO(+1) or MO(-2). Not specifying
it is the same as specifying +1. You can also use an integer,
where 0=MO.</dd>
<dt>leapdays:</dt>
<dd>Will add given days to the date found, if year is a leap
year, and the date found is post 28 of february.</dd>
<dt>yearday, nlyearday:</dt>
<dd>Set the yearday or the non-leap year day (jump leap days).
These are converted to day/month/leapdays information.</dd>
</dl>
</div></blockquote>
<p>Here is the behavior of operations with relativedelta:</p>
<ol class="arabic simple">
<li>Calculate the absolute year, using the ‘year’ argument, or the
original datetime year, if the argument is not present.</li>
<li>Add the relative ‘years’ argument to the absolute year.</li>
<li>Do steps 1 and 2 for month/months.</li>
<li>Calculate the absolute day, using the ‘day’ argument, or the
original datetime day, if the argument is not present. Then,
subtract from the day until it fits in the year and month
found after their operations.</li>
<li>Add the relative ‘days’ argument to the absolute day. Notice
that the ‘weeks’ argument is multiplied by 7 and added to
‘days’.</li>
<li>Do steps 1 and 2 for hour/hours, minute/minutes, second/seconds,
microsecond/microseconds.</li>
<li>If the ‘weekday’ argument is present, calculate the weekday,
with the given (wday, nth) tuple. wday is the index of the
weekday (0-6, 0=Mon), and nth is the number of weeks to add
forward or backward, depending on its signal. Notice that if
the calculated date is already Monday, for example, using
(0, 1) or (0, -1) won’t change the day.</li>
</ol>
</dd></dl>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<h4>Previous topic</h4>
<p class="topless"><a href="other.pyWx.toasterbox.html"
title="previous chapter">toasterbox</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="other.surd.html"
title="next chapter">surd</a></p>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
<input type="text" name="q" />
<input type="submit" value="Go" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
<p class="searchtip" style="font-size: 90%">
Enter search terms or a module, class or function name.
</p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="other.surd.html" title="surd"
>next</a> |</li>
<li class="right" >
<a href="other.pyWx.toasterbox.html" title="toasterbox"
>previous</a> |</li>
<li><a href="index.html">Phatch 0.2 documentation</a> »</li>
<li><a href="other.html" >other</a> »</li>
</ul>
</div>
<div class="footer">
© Copyright 2009, www.stani.be.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2.2.
</div>
</body>
</html>
|