~ubuntu-branches/ubuntu/precise/cython/precise

« back to all changes in this revision

Viewing changes to tests/run/includes/all.pyx

  • Committer: Bazaar Package Importer
  • Author(s): Python Applications Packaging Team, Ryan Kavanagh, Jakub Wilk, Piotr Ożarowski
  • Date: 2009-08-10 23:18:51 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20090810231851-i6f7mr1ij1h2czkp
Tags: 0.11.2-1
[ Ryan Kavanagh ]
* New upstream release (Closes: #525620, #536213)

[ Jakub Wilk ]
* debian/rules: remove generated files.

[ Piotr Ożarowski ]
* Standards-Version bumped to 3.8.2 (no change needed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
__doc__ = """
 
2
    >>> test()
 
3
    1, 2, 3, 4, 5
 
4
"""
 
5
 
 
6
# Make sure all of these happen in order.
 
7
 
 
8
cdef extern from "a.h":
 
9
    cdef int a
 
10
 
 
11
from b cimport b
 
12
 
 
13
cdef extern from "c.h":
 
14
    cdef int c
 
15
 
 
16
cimport indirect_d
 
17
 
 
18
cdef extern from "e.h":
 
19
    cdef int e
 
20
 
 
21
def test():
 
22
    print a, b, c, indirect_d.d, e