blob: 6c6ca1d9f5d523a57fb3da1d325884226779be90 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef PYTHONIC_BUILTIN_BUFFERERROR_HPP
#define PYTHONIC_BUILTIN_BUFFERERROR_HPP
#include "pythonic/include/builtins/BufferError.hpp"
#include "pythonic/types/exceptions.hpp"
PYTHONIC_NS_BEGIN
namespace builtins
{
PYTHONIC_EXCEPTION_IMPL(BufferError)
}
PYTHONIC_NS_END
#endif
|