This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients paul.moore, pitrou, steve.dower, tim.golden, vstinner, zach.ware
Date 2018-05-02.09:35:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1525253726.71.0.682650639539.issue33407@psf.upfronthosting.co.za>
In-reply-to
Content
In Arrow we use the following:

#if __cplusplus <= 201103L
# ifdef __GNUC__
#  define ARROW_DEPRECATED(...) __attribute__((deprecated(__VA_ARGS__)))
# elif defined(_MSC_VER)
#  define ARROW_DEPRECATED(...) __declspec(deprecated(__VA_ARGS__))
# else
#  define ARROW_DEPRECATED(...)
# endif
#else
#  define ARROW_DEPRECATED(...) [[deprecated(__VA_ARGS__)]]
#endif
History
Date User Action Args
2018-05-02 09:35:26pitrousetrecipients: + pitrou, paul.moore, vstinner, tim.golden, zach.ware, steve.dower
2018-05-02 09:35:26pitrousetmessageid: <1525253726.71.0.682650639539.issue33407@psf.upfronthosting.co.za>
2018-05-02 09:35:26pitroulinkissue33407 messages
2018-05-02 09:35:26pitroucreate