pd.Timestamp.__new__ takes a bunch of arguments and I'd like to make some of them keyword-only. Doing that will require a deprecation cycle. To implement that I need to be able to check at runtime whether the user did e.g. pd.Timestamp(x, y, z) vs pd.Timestamp(x, y, tz=z). Is there a way to do this in cython?
In non-cython code we use a decorator https://github.com/pandas-dev/pandas/blob/master/pandas/util/_decorators.py#L260 for this.
--
---
You received this message because you are subscribed to the Google Groups "cython-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cython-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/cython-users/b734d897-9e7e-42db-bf17-133d05369f44n%40googlegroups.com.