Skip to content

Commit

Permalink
BUILD: vendor tempita from Cython
Browse files Browse the repository at this point in the history
  • Loading branch information
mattip committed Oct 15, 2024
1 parent aab644b commit 8694098
Show file tree
Hide file tree
Showing 6 changed files with 1,278 additions and 3 deletions.
5 changes: 5 additions & 0 deletions LICENSES_bundled.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,8 @@ Name: spin
Files: .spin/cmds.py
License: BSD-3
For license text, see .spin/LICENSE

Name: tempita
Files: numpy/_build_utils/tempita/*
License: MIT
For details, see numpy/_build_utils/tempita/LICENCE.txt
4 changes: 1 addition & 3 deletions numpy/_build_utils/tempita.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
import os
import argparse

from Cython import Tempita as tempita

# XXX: If this import ever fails (does it really?), vendor cython.tempita
import tempita


def process_tempita(fromfile, outfile=None):
Expand Down
20 changes: 20 additions & 0 deletions numpy/_build_utils/tempita/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Copyright (c) 2008 Ian Bicking and Contributors

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
4 changes: 4 additions & 0 deletions numpy/_build_utils/tempita/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# The original Tempita implements all of its templating code here.
# Moved it to _tempita.py to make the compilation portable.

from ._tempita import *
156 changes: 156 additions & 0 deletions numpy/_build_utils/tempita/_looper.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,156 @@
"""
Helper for looping over sequences, particular in templates.
Often in a loop in a template it's handy to know what's next up,
previously up, if this is the first or last item in the sequence, etc.
These can be awkward to manage in a normal Python loop, but using the
looper you can get a better sense of the context. Use like::
>>> for loop, item in looper(['a', 'b', 'c']):
... print loop.number, item
... if not loop.last:
... print '---'
1 a
---
2 b
---
3 c
"""

basestring_ = (bytes, str)

__all__ = ['looper']


class looper:
"""
Helper for looping (particularly in templates)
Use this like::
for loop, item in looper(seq):
if loop.first:
...
"""

def __init__(self, seq):
self.seq = seq

def __iter__(self):
return looper_iter(self.seq)

def __repr__(self):
return '<%s for %r>' % (
self.__class__.__name__, self.seq)


class looper_iter:

def __init__(self, seq):
self.seq = list(seq)
self.pos = 0

def __iter__(self):
return self

def __next__(self):
if self.pos >= len(self.seq):
raise StopIteration
result = loop_pos(self.seq, self.pos), self.seq[self.pos]
self.pos += 1
return result


class loop_pos:

def __init__(self, seq, pos):
self.seq = seq
self.pos = pos

def __repr__(self):
return '<loop pos=%r at %r>' % (
self.seq[self.pos], self.pos)

def index(self):
return self.pos
index = property(index)

def number(self):
return self.pos + 1
number = property(number)

def item(self):
return self.seq[self.pos]
item = property(item)

def __next__(self):
try:
return self.seq[self.pos + 1]
except IndexError:
return None
__next__ = property(__next__)

def previous(self):
if self.pos == 0:
return None
return self.seq[self.pos - 1]
previous = property(previous)

def odd(self):
return not self.pos % 2
odd = property(odd)

def even(self):
return self.pos % 2
even = property(even)

def first(self):
return self.pos == 0
first = property(first)

def last(self):
return self.pos == len(self.seq) - 1
last = property(last)

def length(self):
return len(self.seq)
length = property(length)

def first_group(self, getter=None):
"""
Returns true if this item is the start of a new group,
where groups mean that some attribute has changed. The getter
can be None (the item itself changes), an attribute name like
``'.attr'``, a function, or a dict key or list index.
"""
if self.first:
return True
return self._compare_group(self.item, self.previous, getter)

def last_group(self, getter=None):
"""
Returns true if this item is the end of a new group,
where groups mean that some attribute has changed. The getter
can be None (the item itself changes), an attribute name like
``'.attr'``, a function, or a dict key or list index.
"""
if self.last:
return True
return self._compare_group(self.item, self.__next__, getter)

def _compare_group(self, item, other, getter):
if getter is None:
return item != other
elif (isinstance(getter, basestring_)
and getter.startswith('.')):
getter = getter[1:]
if getter.endswith('()'):
getter = getter[:-2]
return getattr(item, getter)() != getattr(other, getter)()
else:
return getattr(item, getter) != getattr(other, getter)
elif hasattr(getter, '__call__'):
return getter(item) != getter(other)
else:
return item[getter] != other[getter]
Loading

0 comments on commit 8694098

Please sign in to comment.