晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。 林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。 见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝) 既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。 南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。
| DIR:/proc/self/root/opt/alt/python313/include/python3.13/ |
| Current File : //proc/self/root/opt/alt/python313/include/python3.13/pymacconfig.h |
// This file moves some of the autoconf magic to compile-time when building on // macOS. This is needed for building 4-way universal binaries and for 64-bit // universal binaries because the values redefined below aren't configure-time // constant but only compile-time constant in these scenarios. #ifndef PY_MACCONFIG_H #define PY_MACCONFIG_H #ifdef __APPLE__ #undef ALIGNOF_MAX_ALIGN_T #undef SIZEOF_LONG #undef SIZEOF_LONG_DOUBLE #undef SIZEOF_PTHREAD_T #undef SIZEOF_SIZE_T #undef SIZEOF_TIME_T #undef SIZEOF_VOID_P #undef SIZEOF__BOOL #undef SIZEOF_UINTPTR_T #undef SIZEOF_PTHREAD_T #undef WORDS_BIGENDIAN #undef DOUBLE_IS_ARM_MIXED_ENDIAN_IEEE754 #undef DOUBLE_IS_BIG_ENDIAN_IEEE754 #undef DOUBLE_IS_LITTLE_ENDIAN_IEEE754 #undef HAVE_GCC_ASM_FOR_X87 #undef HAVE_GCC_ASM_FOR_X64 #undef VA_LIST_IS_ARRAY #if defined(__LP64__) && defined(__x86_64__) # define VA_LIST_IS_ARRAY 1 #endif #undef HAVE_LARGEFILE_SUPPORT #ifndef __LP64__ # define HAVE_LARGEFILE_SUPPORT 1 #endif #undef SIZEOF_LONG #ifdef __LP64__ # define SIZEOF__BOOL 1 # define SIZEOF__BOOL 1 # define SIZEOF_LONG 8 # define SIZEOF_PTHREAD_T 8 # define SIZEOF_SIZE_T 8 # define SIZEOF_TIME_T 8 # define SIZEOF_VOID_P 8 # define SIZEOF_UINTPTR_T 8 # define SIZEOF_PTHREAD_T 8 #else # ifdef __ppc__ # define SIZEOF__BOOL 4 # else # define SIZEOF__BOOL 1 # endif # define SIZEOF_LONG 4 # define SIZEOF_PTHREAD_T 4 # define SIZEOF_SIZE_T 4 # define SIZEOF_TIME_T 4 # define SIZEOF_VOID_P 4 # define SIZEOF_UINTPTR_T 4 # define SIZEOF_PTHREAD_T 4 #endif // macOS 10.4 (the first release to support 64-bit code // at all) only supports 64-bit in the UNIX layer. // Therefore suppress the toolbox-glue in 64-bit mode. // // In 64-bit mode setpgrp always has no arguments, in 32-bit // mode that depends on the compilation environment #if defined(__LP64__) # undef SETPGRP_HAVE_ARG #endif #ifdef __BIG_ENDIAN__ # define WORDS_BIGENDIAN 1 # define DOUBLE_IS_BIG_ENDIAN_IEEE754 #else # define DOUBLE_IS_LITTLE_ENDIAN_IEEE754 #endif #if defined(__i386__) || defined(__x86_64__) # define HAVE_GCC_ASM_FOR_X87 # define ALIGNOF_MAX_ALIGN_T 16 # define HAVE_GCC_ASM_FOR_X64 1 # define SIZEOF_LONG_DOUBLE 16 #else # define ALIGNOF_MAX_ALIGN_T 8 # define SIZEOF_LONG_DOUBLE 8 #endif #endif // __APPLE__ #endif // !PY_MACCONFIG_H |