blob: 75deb246b4ec36ecff3f5b6b7be7a88fe1aa94e3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef PYTHONIC_INCLUDE_STRING_ASCII_UPPERCASE_HPP
#define PYTHONIC_INCLUDE_STRING_ASCII_UPPERCASE_HPP
#include "pythonic/types/str.hpp"
PYTHONIC_NS_BEGIN
namespace string
{
static types::str const ascii_uppercase("ABCDEFGHIJKLMNOPQRSTUVWXYZ");
}
PYTHONIC_NS_END
#endif
|