| Server IP : 217.160.0.212 / Your IP : 216.73.216.141 Web Server : Apache System : Linux www 6.18.51-i1-ampere #1196 SMP Fri Sep 11 20:43:55 CEST 2026 aarch64 User : sws1073854427 ( 1073854427) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /lib/python3/dist-packages/pythran/pythonic/ |
Upload File : |
#ifndef PYTHONIC_CORE_HPP
#define PYTHONIC_CORE_HPP
#define PYTHONIC_NS_BEGIN \
namespace \
{ \
namespace pythonic \
{
#define PYTHONIC_NS_END \
} \
}
// mostly to flag '_' as unused in generated code
#ifdef WIN32
#define PYTHRAN_UNUSED
#else
#define PYTHRAN_UNUSED __attribute__((unused))
#endif
// for backward compatibility
#ifdef USE_BOOST_SIMD
#define USE_XSIMD
#endif
#define STR_(M) #M
// clang-format off
#define INCLUDE_FILE(U, M) STR_(U/M.hpp)
// clang-format on
#include "pythonic/types/assignable.hpp"
#include "pythonic/types/combined.hpp"
#include "pythonic/types/int.hpp"
#include "pythonic/types/float.hpp"
#include "pythonic/types/slice.hpp"
#endif