Ticket #654 (closed defect: wontfix)
Out of order side effects of non-trivial arguments in function calls
| Reported by: | robertwb | Owned by: | scoder, robertwb |
|---|---|---|---|
| Priority: | major | Milestone: | wishlist |
| Component: | Code Generation | Keywords: | |
| Cc: |
Description
cdef int f():
print "f"
def g():
print "g"
cdef foo(int x, object o):
pass
foo(f(), g())
There may be others sitting out there due to inline expressions vs. temporary variables.
Change History
Note: See
TracTickets for help on using
tickets.
