Server IP : 104.21.38.3 / Your IP : 162.158.162.44 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/boost/boost_1_59_0/boost/python/ |
Upload File : |
// Copyright David Abrahams 2002. // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef OBJECT_PROTOCOL_DWA2002615_HPP # define OBJECT_PROTOCOL_DWA2002615_HPP # include <boost/python/detail/prefix.hpp> # include <boost/python/object_protocol_core.hpp> # include <boost/python/object_core.hpp> # include <boost/detail/workaround.hpp> namespace boost { namespace python { namespace api { # if BOOST_WORKAROUND(__SUNPRO_CC, BOOST_TESTED_AT(0x590)) // attempt to use SFINAE to prevent functions accepting T const& from // coming up as ambiguous with the one taking a char const* when a // string literal is passed # define BOOST_PYTHON_NO_ARRAY_ARG(T) , T (*)() = 0 # else # define BOOST_PYTHON_NO_ARRAY_ARG(T) # endif template <class Target, class Key> object getattr(Target const& target, Key const& key BOOST_PYTHON_NO_ARRAY_ARG(Key)) { return getattr(object(target), object(key)); } template <class Target, class Key, class Default> object getattr(Target const& target, Key const& key, Default const& default_ BOOST_PYTHON_NO_ARRAY_ARG(Key)) { return getattr(object(target), object(key), object(default_)); } template <class Key, class Value> void setattr(object const& target, Key const& key, Value const& value BOOST_PYTHON_NO_ARRAY_ARG(Key)) { setattr(target, object(key), object(value)); } template <class Key> void delattr(object const& target, Key const& key BOOST_PYTHON_NO_ARRAY_ARG(Key)) { delattr(target, object(key)); } template <class Target, class Key> object getitem(Target const& target, Key const& key BOOST_PYTHON_NO_ARRAY_ARG(Key)) { return getitem(object(target), object(key)); } template <class Key, class Value> void setitem(object const& target, Key const& key, Value const& value BOOST_PYTHON_NO_ARRAY_ARG(Key)) { setitem(target, object(key), object(value)); } template <class Key> void delitem(object const& target, Key const& key BOOST_PYTHON_NO_ARRAY_ARG(Key)) { delitem(target, object(key)); } template <class Target, class Begin, class End> object getslice(Target const& target, Begin const& begin, End const& end) { return getslice(object(target), object(begin), object(end)); } template <class Begin, class End, class Value> void setslice(object const& target, Begin const& begin, End const& end, Value const& value) { setslice(target, object(begin), object(end), object(value)); } template <class Begin, class End> void delslice(object const& target, Begin const& begin, End const& end) { delslice(target, object(begin), object(end)); } }}} // namespace boost::python::api #endif // OBJECT_PROTOCOL_DWA2002615_HPP