1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066
|
/* Generated */
#if defined(LIBXML_DOCB_ENABLED)
PyObject * libxml_docbDefaultSAXHandlerInit(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_DOCB_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlAutoCloseTag(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlCreateFileParserCtxt(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlCreateMemoryParserCtxt(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlCreatePushParser(PyObject *self, PyObject *args);
#endif
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlCtxtReadDoc(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlCtxtReadFd(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlCtxtReadFile(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlCtxtReadMemory(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlCtxtReset(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlCtxtUseOptions(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlDefaultSAXHandlerInit(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_htmlDocContentDumpFormatOutput(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_htmlDocContentDumpOutput(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_htmlDocDump(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlFreeParserCtxt(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlGetMetaEncoding(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlHandleOmittedElem(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlInitAutoClose(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlIsAutoClosed(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlIsBooleanAttr(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlIsScriptAttribute(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlNewDoc(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlNewDocNoDtD(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlNewParserCtxt(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_htmlNodeDumpFile(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_htmlNodeDumpFileFormat(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_htmlNodeDumpFormatOutput(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_htmlNodeDumpOutput(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlParseCharRef(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED) && defined(LIBXML_PUSH_ENABLED)
PyObject * libxml_htmlParseChunk(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) && defined(LIBXML_PUSH_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlParseDoc(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlParseDocument(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlParseElement(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlParseFile(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlReadDoc(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlReadFd(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlReadFile(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlReadMemory(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlSAXParseFile(PyObject *self, PyObject *args);
#endif
#if defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_htmlSaveFile(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_htmlSaveFileEnc(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_htmlSaveFileFormat(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_HTML_ENABLED)
PyObject * libxml_htmlSetMetaEncoding(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTML_ENABLED) */
PyObject * libxml_namePop(PyObject *self, PyObject *args);
PyObject * libxml_namePush(PyObject *self, PyObject *args);
PyObject * libxml_nodePop(PyObject *self, PyObject *args);
PyObject * libxml_nodePush(PyObject *self, PyObject *args);
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_valuePop(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlACatalogAdd(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
#if defined(LIBXML_CATALOG_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_xmlACatalogDump(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) && defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlACatalogRemove(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlACatalogResolve(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlACatalogResolvePublic(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlACatalogResolveSystem(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlACatalogResolveURI(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
PyObject * libxml_xmlAddChild(PyObject *self, PyObject *args);
PyObject * libxml_xmlAddChildList(PyObject *self, PyObject *args);
PyObject * libxml_xmlAddDocEntity(PyObject *self, PyObject *args);
PyObject * libxml_xmlAddDtdEntity(PyObject *self, PyObject *args);
PyObject * libxml_xmlAddEncodingAlias(PyObject *self, PyObject *args);
PyObject * libxml_xmlAddNextSibling(PyObject *self, PyObject *args);
#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_HTML_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_XINCLUDE_ENABLED)
PyObject * libxml_xmlAddPrevSibling(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_HTML_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_XINCLUDE_ENABLED) */
PyObject * libxml_xmlAddSibling(PyObject *self, PyObject *args);
#if defined(LIBXML_DEBUG_ENABLED)
PyObject * libxml_xmlBoolToText(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_DEBUG_ENABLED) */
PyObject * libxml_xmlBuildQName(PyObject *self, PyObject *args);
PyObject * libxml_xmlBuildRelativeURI(PyObject *self, PyObject *args);
PyObject * libxml_xmlBuildURI(PyObject *self, PyObject *args);
PyObject * libxml_xmlByteConsumed(PyObject *self, PyObject *args);
PyObject * libxml_xmlCanonicPath(PyObject *self, PyObject *args);
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlCatalogAdd(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlCatalogCleanup(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlCatalogConvert(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
#if defined(LIBXML_CATALOG_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_xmlCatalogDump(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) && defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlCatalogGetPublic(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlCatalogGetSystem(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlCatalogIsEmpty(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlCatalogRemove(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlCatalogResolve(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlCatalogResolvePublic(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlCatalogResolveSystem(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlCatalogResolveURI(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlCatalogSetDebug(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
PyObject * libxml_xmlCharStrdup(PyObject *self, PyObject *args);
PyObject * libxml_xmlCharStrndup(PyObject *self, PyObject *args);
PyObject * libxml_xmlCheckFilename(PyObject *self, PyObject *args);
PyObject * libxml_xmlCheckLanguageID(PyObject *self, PyObject *args);
PyObject * libxml_xmlCheckUTF8(PyObject *self, PyObject *args);
PyObject * libxml_xmlCheckVersion(PyObject *self, PyObject *args);
PyObject * libxml_xmlCleanupCharEncodingHandlers(PyObject *self, PyObject *args);
PyObject * libxml_xmlCleanupEncodingAliases(PyObject *self, PyObject *args);
PyObject * libxml_xmlCleanupGlobals(PyObject *self, PyObject *args);
PyObject * libxml_xmlCleanupInputCallbacks(PyObject *self, PyObject *args);
#if defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_xmlCleanupOutputCallbacks(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_LEGACY_ENABLED)
PyObject * libxml_xmlCleanupPredefinedEntities(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_LEGACY_ENABLED) */
PyObject * libxml_xmlClearParserCtxt(PyObject *self, PyObject *args);
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlConvertSGMLCatalog(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
PyObject * libxml_xmlCopyChar(PyObject *self, PyObject *args);
PyObject * libxml_xmlCopyCharMultiByte(PyObject *self, PyObject *args);
#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlCopyDoc(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_TREE_ENABLED)
PyObject * libxml_xmlCopyDtd(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) */
PyObject * libxml_xmlCopyError(PyObject *self, PyObject *args);
PyObject * libxml_xmlCopyNamespace(PyObject *self, PyObject *args);
PyObject * libxml_xmlCopyNamespaceList(PyObject *self, PyObject *args);
PyObject * libxml_xmlCopyNode(PyObject *self, PyObject *args);
PyObject * libxml_xmlCopyNodeList(PyObject *self, PyObject *args);
PyObject * libxml_xmlCopyProp(PyObject *self, PyObject *args);
PyObject * libxml_xmlCopyPropList(PyObject *self, PyObject *args);
PyObject * libxml_xmlCreateDocParserCtxt(PyObject *self, PyObject *args);
PyObject * libxml_xmlCreateEntityParserCtxt(PyObject *self, PyObject *args);
PyObject * libxml_xmlCreateFileParserCtxt(PyObject *self, PyObject *args);
PyObject * libxml_xmlCreateInputBuffer(PyObject *self, PyObject *args);
PyObject * libxml_xmlCreateIntSubset(PyObject *self, PyObject *args);
PyObject * libxml_xmlCreateMemoryParserCtxt(PyObject *self, PyObject *args);
PyObject * libxml_xmlCreateOutputBuffer(PyObject *self, PyObject *args);
PyObject * libxml_xmlCreatePushParser(PyObject *self, PyObject *args);
PyObject * libxml_xmlCreateURI(PyObject *self, PyObject *args);
PyObject * libxml_xmlCreateURLParserCtxt(PyObject *self, PyObject *args);
PyObject * libxml_xmlCtxtReadDoc(PyObject *self, PyObject *args);
PyObject * libxml_xmlCtxtReadFd(PyObject *self, PyObject *args);
PyObject * libxml_xmlCtxtReadFile(PyObject *self, PyObject *args);
PyObject * libxml_xmlCtxtReadMemory(PyObject *self, PyObject *args);
PyObject * libxml_xmlCtxtReset(PyObject *self, PyObject *args);
PyObject * libxml_xmlCtxtResetPush(PyObject *self, PyObject *args);
PyObject * libxml_xmlCtxtUseOptions(PyObject *self, PyObject *args);
#if defined(LIBXML_DEBUG_ENABLED)
PyObject * libxml_xmlDebugCheckDocument(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_DEBUG_ENABLED) */
#if defined(LIBXML_DEBUG_ENABLED)
PyObject * libxml_xmlDebugDumpAttr(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_DEBUG_ENABLED) */
#if defined(LIBXML_DEBUG_ENABLED)
PyObject * libxml_xmlDebugDumpAttrList(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_DEBUG_ENABLED) */
#if defined(LIBXML_DEBUG_ENABLED)
PyObject * libxml_xmlDebugDumpDTD(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_DEBUG_ENABLED) */
#if defined(LIBXML_DEBUG_ENABLED)
PyObject * libxml_xmlDebugDumpDocument(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_DEBUG_ENABLED) */
#if defined(LIBXML_DEBUG_ENABLED)
PyObject * libxml_xmlDebugDumpDocumentHead(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_DEBUG_ENABLED) */
#if defined(LIBXML_DEBUG_ENABLED)
PyObject * libxml_xmlDebugDumpEntities(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_DEBUG_ENABLED) */
#if defined(LIBXML_DEBUG_ENABLED)
PyObject * libxml_xmlDebugDumpNode(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_DEBUG_ENABLED) */
#if defined(LIBXML_DEBUG_ENABLED)
PyObject * libxml_xmlDebugDumpNodeList(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_DEBUG_ENABLED) */
#if defined(LIBXML_DEBUG_ENABLED)
PyObject * libxml_xmlDebugDumpOneNode(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_DEBUG_ENABLED) */
#if defined(LIBXML_DEBUG_ENABLED)
PyObject * libxml_xmlDebugDumpString(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_DEBUG_ENABLED) */
PyObject * libxml_xmlDebugMemory(PyObject *self, PyObject *args);
#if defined(LIBXML_LEGACY_ENABLED)
PyObject * libxml_xmlDecodeEntities(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_LEGACY_ENABLED) */
PyObject * libxml_xmlDefaultSAXHandlerInit(PyObject *self, PyObject *args);
PyObject * libxml_xmlDelEncodingAlias(PyObject *self, PyObject *args);
PyObject * libxml_xmlDictCleanup(PyObject *self, PyObject *args);
PyObject * libxml_xmlDocCopyNode(PyObject *self, PyObject *args);
PyObject * libxml_xmlDocCopyNodeList(PyObject *self, PyObject *args);
#if defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_xmlDocDump(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_xmlDocFormatDump(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_OUTPUT_ENABLED) */
PyObject * libxml_xmlDocGetRootElement(PyObject *self, PyObject *args);
#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_WRITER_ENABLED)
PyObject * libxml_xmlDocSetRootElement(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_WRITER_ENABLED) */
PyObject * libxml_xmlDumpMemory(PyObject *self, PyObject *args);
#if defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_xmlElemDump(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_LEGACY_ENABLED)
PyObject * libxml_xmlEncodeEntities(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_LEGACY_ENABLED) */
PyObject * libxml_xmlEncodeEntitiesReentrant(PyObject *self, PyObject *args);
PyObject * libxml_xmlEncodeSpecialChars(PyObject *self, PyObject *args);
PyObject * libxml_xmlErrorGetCode(PyObject *self, PyObject *args);
PyObject * libxml_xmlErrorGetDomain(PyObject *self, PyObject *args);
PyObject * libxml_xmlErrorGetFile(PyObject *self, PyObject *args);
PyObject * libxml_xmlErrorGetLevel(PyObject *self, PyObject *args);
PyObject * libxml_xmlErrorGetLine(PyObject *self, PyObject *args);
PyObject * libxml_xmlErrorGetMessage(PyObject *self, PyObject *args);
PyObject * libxml_xmlFileMatch(PyObject *self, PyObject *args);
#if defined(LIBXML_TREE_ENABLED)
PyObject * libxml_xmlFirstElementChild(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) */
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlFreeCatalog(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
PyObject * libxml_xmlFreeDoc(PyObject *self, PyObject *args);
PyObject * libxml_xmlFreeDtd(PyObject *self, PyObject *args);
PyObject * libxml_xmlFreeNode(PyObject *self, PyObject *args);
PyObject * libxml_xmlFreeNodeList(PyObject *self, PyObject *args);
PyObject * libxml_xmlFreeNs(PyObject *self, PyObject *args);
PyObject * libxml_xmlFreeNsList(PyObject *self, PyObject *args);
PyObject * libxml_xmlFreeParserInputBuffer(PyObject *self, PyObject *args);
PyObject * libxml_xmlFreeProp(PyObject *self, PyObject *args);
PyObject * libxml_xmlFreePropList(PyObject *self, PyObject *args);
PyObject * libxml_xmlFreeURI(PyObject *self, PyObject *args);
PyObject * libxml_xmlGetCompressMode(PyObject *self, PyObject *args);
PyObject * libxml_xmlGetDocCompressMode(PyObject *self, PyObject *args);
PyObject * libxml_xmlGetDocEntity(PyObject *self, PyObject *args);
PyObject * libxml_xmlGetDtdAttrDesc(PyObject *self, PyObject *args);
PyObject * libxml_xmlGetDtdElementDesc(PyObject *self, PyObject *args);
PyObject * libxml_xmlGetDtdEntity(PyObject *self, PyObject *args);
PyObject * libxml_xmlGetDtdQAttrDesc(PyObject *self, PyObject *args);
PyObject * libxml_xmlGetDtdQElementDesc(PyObject *self, PyObject *args);
PyObject * libxml_xmlGetEncodingAlias(PyObject *self, PyObject *args);
PyObject * libxml_xmlGetID(PyObject *self, PyObject *args);
PyObject * libxml_xmlGetIntSubset(PyObject *self, PyObject *args);
PyObject * libxml_xmlGetLastChild(PyObject *self, PyObject *args);
PyObject * libxml_xmlGetLastError(PyObject *self, PyObject *args);
PyObject * libxml_xmlGetLineNo(PyObject *self, PyObject *args);
PyObject * libxml_xmlGetNoNsProp(PyObject *self, PyObject *args);
#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_DEBUG_ENABLED)
PyObject * libxml_xmlGetNodePath(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_DEBUG_ENABLED) */
PyObject * libxml_xmlGetNsProp(PyObject *self, PyObject *args);
PyObject * libxml_xmlGetParameterEntity(PyObject *self, PyObject *args);
PyObject * libxml_xmlGetPredefinedEntity(PyObject *self, PyObject *args);
PyObject * libxml_xmlGetProp(PyObject *self, PyObject *args);
#if defined(LIBXML_LEGACY_ENABLED)
PyObject * libxml_xmlHandleEntity(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_LEGACY_ENABLED) */
PyObject * libxml_xmlHasNsProp(PyObject *self, PyObject *args);
PyObject * libxml_xmlHasProp(PyObject *self, PyObject *args);
#if defined(LIBXML_FTP_ENABLED)
PyObject * libxml_xmlIOFTPMatch(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_FTP_ENABLED) */
#if defined(LIBXML_HTTP_ENABLED)
PyObject * libxml_xmlIOHTTPMatch(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTTP_ENABLED) */
PyObject * libxml_xmlInitCharEncodingHandlers(PyObject *self, PyObject *args);
PyObject * libxml_xmlInitGlobals(PyObject *self, PyObject *args);
PyObject * libxml_xmlInitParser(PyObject *self, PyObject *args);
PyObject * libxml_xmlInitParserCtxt(PyObject *self, PyObject *args);
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlInitializeCatalog(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
PyObject * libxml_xmlInitializeDict(PyObject *self, PyObject *args);
#if defined(LIBXML_LEGACY_ENABLED)
PyObject * libxml_xmlInitializePredefinedEntities(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_LEGACY_ENABLED) */
PyObject * libxml_xmlIsBaseChar(PyObject *self, PyObject *args);
PyObject * libxml_xmlIsBlank(PyObject *self, PyObject *args);
PyObject * libxml_xmlIsBlankNode(PyObject *self, PyObject *args);
PyObject * libxml_xmlIsChar(PyObject *self, PyObject *args);
PyObject * libxml_xmlIsCombining(PyObject *self, PyObject *args);
PyObject * libxml_xmlIsDigit(PyObject *self, PyObject *args);
PyObject * libxml_xmlIsExtender(PyObject *self, PyObject *args);
PyObject * libxml_xmlIsID(PyObject *self, PyObject *args);
PyObject * libxml_xmlIsIdeographic(PyObject *self, PyObject *args);
PyObject * libxml_xmlIsLetter(PyObject *self, PyObject *args);
PyObject * libxml_xmlIsMixedElement(PyObject *self, PyObject *args);
PyObject * libxml_xmlIsPubidChar(PyObject *self, PyObject *args);
PyObject * libxml_xmlIsRef(PyObject *self, PyObject *args);
PyObject * libxml_xmlIsXHTML(PyObject *self, PyObject *args);
PyObject * libxml_xmlKeepBlanksDefault(PyObject *self, PyObject *args);
#if defined(LIBXML_TREE_ENABLED)
PyObject * libxml_xmlLastElementChild(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) */
PyObject * libxml_xmlLineNumbersDefault(PyObject *self, PyObject *args);
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlLoadACatalog(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlLoadCatalog(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlLoadCatalogs(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlLoadSGMLSuperCatalog(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
#if defined(LIBXML_DEBUG_ENABLED)
PyObject * libxml_xmlLsCountNode(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_DEBUG_ENABLED) */
#if defined(LIBXML_DEBUG_ENABLED)
PyObject * libxml_xmlLsOneNode(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_DEBUG_ENABLED) */
PyObject * libxml_xmlMemoryUsed(PyObject *self, PyObject *args);
#if defined(LIBXML_LEGACY_ENABLED)
PyObject * libxml_xmlNamespaceParseNCName(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_LEGACY_ENABLED) */
#if defined(LIBXML_LEGACY_ENABLED)
PyObject * libxml_xmlNamespaceParseNSDef(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_LEGACY_ENABLED) */
#if defined(LIBXML_FTP_ENABLED)
PyObject * libxml_xmlNanoFTPCleanup(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_FTP_ENABLED) */
#if defined(LIBXML_FTP_ENABLED)
PyObject * libxml_xmlNanoFTPInit(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_FTP_ENABLED) */
#if defined(LIBXML_FTP_ENABLED)
PyObject * libxml_xmlNanoFTPProxy(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_FTP_ENABLED) */
#if defined(LIBXML_FTP_ENABLED)
PyObject * libxml_xmlNanoFTPScanProxy(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_FTP_ENABLED) */
#if defined(LIBXML_HTTP_ENABLED)
PyObject * libxml_xmlNanoHTTPCleanup(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTTP_ENABLED) */
#if defined(LIBXML_HTTP_ENABLED)
PyObject * libxml_xmlNanoHTTPInit(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTTP_ENABLED) */
#if defined(LIBXML_HTTP_ENABLED)
PyObject * libxml_xmlNanoHTTPScanProxy(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_HTTP_ENABLED) */
PyObject * libxml_xmlNewCDataBlock(PyObject *self, PyObject *args);
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlNewCatalog(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
PyObject * libxml_xmlNewCharRef(PyObject *self, PyObject *args);
#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlNewChild(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) */
PyObject * libxml_xmlNewComment(PyObject *self, PyObject *args);
PyObject * libxml_xmlNewDoc(PyObject *self, PyObject *args);
PyObject * libxml_xmlNewDocComment(PyObject *self, PyObject *args);
#if defined(LIBXML_TREE_ENABLED)
PyObject * libxml_xmlNewDocFragment(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) */
PyObject * libxml_xmlNewDocNode(PyObject *self, PyObject *args);
PyObject * libxml_xmlNewDocNodeEatName(PyObject *self, PyObject *args);
PyObject * libxml_xmlNewDocPI(PyObject *self, PyObject *args);
PyObject * libxml_xmlNewDocProp(PyObject *self, PyObject *args);
#if defined(LIBXML_TREE_ENABLED)
PyObject * libxml_xmlNewDocRawNode(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) */
PyObject * libxml_xmlNewDocText(PyObject *self, PyObject *args);
PyObject * libxml_xmlNewDocTextLen(PyObject *self, PyObject *args);
PyObject * libxml_xmlNewDtd(PyObject *self, PyObject *args);
PyObject * libxml_xmlNewEntity(PyObject *self, PyObject *args);
#if defined(LIBXML_LEGACY_ENABLED)
PyObject * libxml_xmlNewGlobalNs(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_LEGACY_ENABLED) */
PyObject * libxml_xmlNewNode(PyObject *self, PyObject *args);
PyObject * libxml_xmlNewNodeEatName(PyObject *self, PyObject *args);
PyObject * libxml_xmlNewNs(PyObject *self, PyObject *args);
PyObject * libxml_xmlNewNsProp(PyObject *self, PyObject *args);
PyObject * libxml_xmlNewNsPropEatName(PyObject *self, PyObject *args);
PyObject * libxml_xmlNewPI(PyObject *self, PyObject *args);
PyObject * libxml_xmlNewParserCtxt(PyObject *self, PyObject *args);
#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_HTML_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlNewProp(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_HTML_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) */
PyObject * libxml_xmlNewReference(PyObject *self, PyObject *args);
PyObject * libxml_xmlNewText(PyObject *self, PyObject *args);
#if defined(LIBXML_TREE_ENABLED)
PyObject * libxml_xmlNewTextChild(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) */
PyObject * libxml_xmlNewTextLen(PyObject *self, PyObject *args);
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlNewTextReader(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlNewTextReaderFilename(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_VALID_ENABLED)
PyObject * libxml_xmlNewValidCtxt(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_VALID_ENABLED) */
PyObject * libxml_xmlNextChar(PyObject *self, PyObject *args);
#if defined(LIBXML_TREE_ENABLED)
PyObject * libxml_xmlNextElementSibling(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) */
PyObject * libxml_xmlNodeAddContent(PyObject *self, PyObject *args);
PyObject * libxml_xmlNodeAddContentLen(PyObject *self, PyObject *args);
#if defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_xmlNodeDumpOutput(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_OUTPUT_ENABLED) */
PyObject * libxml_xmlNodeGetBase(PyObject *self, PyObject *args);
PyObject * libxml_xmlNodeGetContent(PyObject *self, PyObject *args);
PyObject * libxml_xmlNodeGetLang(PyObject *self, PyObject *args);
PyObject * libxml_xmlNodeGetNs(PyObject *self, PyObject *args);
PyObject * libxml_xmlNodeGetNsDefs(PyObject *self, PyObject *args);
PyObject * libxml_xmlNodeGetSpacePreserve(PyObject *self, PyObject *args);
PyObject * libxml_xmlNodeIsText(PyObject *self, PyObject *args);
#if defined(LIBXML_TREE_ENABLED)
PyObject * libxml_xmlNodeListGetRawString(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) */
PyObject * libxml_xmlNodeListGetString(PyObject *self, PyObject *args);
#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XINCLUDE_ENABLED)
PyObject * libxml_xmlNodeSetBase(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XINCLUDE_ENABLED) */
PyObject * libxml_xmlNodeSetContent(PyObject *self, PyObject *args);
#if defined(LIBXML_TREE_ENABLED)
PyObject * libxml_xmlNodeSetContentLen(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) */
#if defined(LIBXML_TREE_ENABLED)
PyObject * libxml_xmlNodeSetLang(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) */
#if defined(LIBXML_TREE_ENABLED)
PyObject * libxml_xmlNodeSetName(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) */
#if defined(LIBXML_TREE_ENABLED)
PyObject * libxml_xmlNodeSetSpacePreserve(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) */
PyObject * libxml_xmlNormalizeURIPath(PyObject *self, PyObject *args);
PyObject * libxml_xmlNormalizeWindowsPath(PyObject *self, PyObject *args);
#if defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_xmlOutputBufferGetContent(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_xmlOutputBufferWrite(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_xmlOutputBufferWriteString(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_OUTPUT_ENABLED) */
PyObject * libxml_xmlParseAttValue(PyObject *self, PyObject *args);
PyObject * libxml_xmlParseAttributeListDecl(PyObject *self, PyObject *args);
PyObject * libxml_xmlParseCDSect(PyObject *self, PyObject *args);
#if defined(LIBXML_CATALOG_ENABLED)
PyObject * libxml_xmlParseCatalogFile(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_CATALOG_ENABLED) */
PyObject * libxml_xmlParseCharData(PyObject *self, PyObject *args);
PyObject * libxml_xmlParseCharRef(PyObject *self, PyObject *args);
#if defined(LIBXML_PUSH_ENABLED)
PyObject * libxml_xmlParseChunk(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_PUSH_ENABLED) */
PyObject * libxml_xmlParseComment(PyObject *self, PyObject *args);
PyObject * libxml_xmlParseContent(PyObject *self, PyObject *args);
#if defined(LIBXML_VALID_ENABLED)
PyObject * libxml_xmlParseDTD(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_VALID_ENABLED) */
#if defined(LIBXML_SAX1_ENABLED)
PyObject * libxml_xmlParseDoc(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SAX1_ENABLED) */
PyObject * libxml_xmlParseDocTypeDecl(PyObject *self, PyObject *args);
PyObject * libxml_xmlParseDocument(PyObject *self, PyObject *args);
PyObject * libxml_xmlParseElement(PyObject *self, PyObject *args);
PyObject * libxml_xmlParseElementDecl(PyObject *self, PyObject *args);
PyObject * libxml_xmlParseEncName(PyObject *self, PyObject *args);
PyObject * libxml_xmlParseEncodingDecl(PyObject *self, PyObject *args);
#if defined(LIBXML_SAX1_ENABLED)
PyObject * libxml_xmlParseEndTag(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SAX1_ENABLED) */
#if defined(LIBXML_SAX1_ENABLED)
PyObject * libxml_xmlParseEntity(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SAX1_ENABLED) */
PyObject * libxml_xmlParseEntityDecl(PyObject *self, PyObject *args);
PyObject * libxml_xmlParseEntityRef(PyObject *self, PyObject *args);
PyObject * libxml_xmlParseExtParsedEnt(PyObject *self, PyObject *args);
PyObject * libxml_xmlParseExternalSubset(PyObject *self, PyObject *args);
#if defined(LIBXML_SAX1_ENABLED)
PyObject * libxml_xmlParseFile(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SAX1_ENABLED) */
PyObject * libxml_xmlParseMarkupDecl(PyObject *self, PyObject *args);
#if defined(LIBXML_SAX1_ENABLED)
PyObject * libxml_xmlParseMemory(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SAX1_ENABLED) */
PyObject * libxml_xmlParseMisc(PyObject *self, PyObject *args);
PyObject * libxml_xmlParseName(PyObject *self, PyObject *args);
#if defined(LIBXML_LEGACY_ENABLED)
PyObject * libxml_xmlParseNamespace(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_LEGACY_ENABLED) */
PyObject * libxml_xmlParseNmtoken(PyObject *self, PyObject *args);
PyObject * libxml_xmlParseNotationDecl(PyObject *self, PyObject *args);
PyObject * libxml_xmlParsePEReference(PyObject *self, PyObject *args);
PyObject * libxml_xmlParsePI(PyObject *self, PyObject *args);
PyObject * libxml_xmlParsePITarget(PyObject *self, PyObject *args);
PyObject * libxml_xmlParsePubidLiteral(PyObject *self, PyObject *args);
#if defined(LIBXML_LEGACY_ENABLED)
PyObject * libxml_xmlParseQuotedString(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_LEGACY_ENABLED) */
PyObject * libxml_xmlParseReference(PyObject *self, PyObject *args);
PyObject * libxml_xmlParseSDDecl(PyObject *self, PyObject *args);
#if defined(LIBXML_SAX1_ENABLED)
PyObject * libxml_xmlParseStartTag(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SAX1_ENABLED) */
PyObject * libxml_xmlParseSystemLiteral(PyObject *self, PyObject *args);
PyObject * libxml_xmlParseTextDecl(PyObject *self, PyObject *args);
PyObject * libxml_xmlParseURI(PyObject *self, PyObject *args);
PyObject * libxml_xmlParseURIRaw(PyObject *self, PyObject *args);
PyObject * libxml_xmlParseURIReference(PyObject *self, PyObject *args);
PyObject * libxml_xmlParseVersionInfo(PyObject *self, PyObject *args);
PyObject * libxml_xmlParseVersionNum(PyObject *self, PyObject *args);
PyObject * libxml_xmlParseXMLDecl(PyObject *self, PyObject *args);
PyObject * libxml_xmlParserGetDirectory(PyObject *self, PyObject *args);
PyObject * libxml_xmlParserGetDoc(PyObject *self, PyObject *args);
PyObject * libxml_xmlParserGetIsValid(PyObject *self, PyObject *args);
PyObject * libxml_xmlParserGetWellFormed(PyObject *self, PyObject *args);
PyObject * libxml_xmlParserHandlePEReference(PyObject *self, PyObject *args);
#if defined(LIBXML_LEGACY_ENABLED)
PyObject * libxml_xmlParserHandleReference(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_LEGACY_ENABLED) */
PyObject * libxml_xmlParserInputBufferGrow(PyObject *self, PyObject *args);
PyObject * libxml_xmlParserInputBufferPush(PyObject *self, PyObject *args);
PyObject * libxml_xmlParserInputBufferRead(PyObject *self, PyObject *args);
PyObject * libxml_xmlParserSetLineNumbers(PyObject *self, PyObject *args);
PyObject * libxml_xmlParserSetLoadSubset(PyObject *self, PyObject *args);
PyObject * libxml_xmlParserSetPedantic(PyObject *self, PyObject *args);
PyObject * libxml_xmlParserSetReplaceEntities(PyObject *self, PyObject *args);
PyObject * libxml_xmlParserSetValidate(PyObject *self, PyObject *args);
PyObject * libxml_xmlPathToURI(PyObject *self, PyObject *args);
PyObject * libxml_xmlPedanticParserDefault(PyObject *self, PyObject *args);
PyObject * libxml_xmlPopInput(PyObject *self, PyObject *args);
#if defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_xmlPopOutputCallbacks(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_TREE_ENABLED)
PyObject * libxml_xmlPreviousElementSibling(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) */
PyObject * libxml_xmlPrintURI(PyObject *self, PyObject *args);
PyObject * libxml_xmlPythonCleanupParser(PyObject *self, PyObject *args);
PyObject * libxml_xmlReadDoc(PyObject *self, PyObject *args);
PyObject * libxml_xmlReadFd(PyObject *self, PyObject *args);
PyObject * libxml_xmlReadFile(PyObject *self, PyObject *args);
PyObject * libxml_xmlReadMemory(PyObject *self, PyObject *args);
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlReaderForDoc(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlReaderForFd(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlReaderForFile(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlReaderForMemory(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlReaderNewDoc(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlReaderNewFd(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlReaderNewFile(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlReaderNewMemory(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlReaderNewWalker(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlReaderWalker(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_TREE_ENABLED)
PyObject * libxml_xmlReconciliateNs(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) */
#if defined(LIBXML_SAX1_ENABLED)
PyObject * libxml_xmlRecoverDoc(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SAX1_ENABLED) */
#if defined(LIBXML_SAX1_ENABLED)
PyObject * libxml_xmlRecoverFile(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SAX1_ENABLED) */
#if defined(LIBXML_SAX1_ENABLED)
PyObject * libxml_xmlRecoverMemory(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SAX1_ENABLED) */
#if defined(LIBXML_REGEXP_ENABLED)
PyObject * libxml_xmlRegFreeRegexp(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_REGEXP_ENABLED) */
#if defined(LIBXML_REGEXP_ENABLED)
PyObject * libxml_xmlRegexpCompile(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_REGEXP_ENABLED) */
#if defined(LIBXML_REGEXP_ENABLED)
PyObject * libxml_xmlRegexpExec(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_REGEXP_ENABLED) */
#if defined(LIBXML_REGEXP_ENABLED)
PyObject * libxml_xmlRegexpIsDeterminist(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_REGEXP_ENABLED) */
#if defined(LIBXML_REGEXP_ENABLED)
PyObject * libxml_xmlRegexpPrint(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_REGEXP_ENABLED) */
PyObject * libxml_xmlRegisterDefaultInputCallbacks(PyObject *self, PyObject *args);
#if defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_xmlRegisterDefaultOutputCallbacks(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_OUTPUT_ENABLED) && defined(LIBXML_HTTP_ENABLED)
PyObject * libxml_xmlRegisterHTTPPostCallbacks(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_OUTPUT_ENABLED) && defined(LIBXML_HTTP_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlRegisterXPathFunction(PyObject *self, PyObject *args);
#endif
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlRelaxNGCleanupTypes(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_xmlRelaxNGDump(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) && defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_xmlRelaxNGDumpTree(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) && defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlRelaxNGFree(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlRelaxNGFreeParserCtxt(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlRelaxNGInitTypes(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlRelaxNGNewDocParserCtxt(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlRelaxNGNewMemParserCtxt(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlRelaxNGNewParserCtxt(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlRelaxNGNewValidCtxt(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlRelaxNGParse(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlRelaxNGValidateDoc(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlRelaxNGValidateFullElement(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlRelaxNGValidatePopElement(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlRelaxNGValidatePushCData(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlRelaxNGValidatePushElement(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlRelaxParserSetFlag(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
PyObject * libxml_xmlRemoveID(PyObject *self, PyObject *args);
PyObject * libxml_xmlRemoveProp(PyObject *self, PyObject *args);
PyObject * libxml_xmlRemoveRef(PyObject *self, PyObject *args);
#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_WRITER_ENABLED)
PyObject * libxml_xmlReplaceNode(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_WRITER_ENABLED) */
PyObject * libxml_xmlResetError(PyObject *self, PyObject *args);
PyObject * libxml_xmlResetLastError(PyObject *self, PyObject *args);
#if defined(LIBXML_SAX1_ENABLED)
PyObject * libxml_xmlSAXDefaultVersion(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SAX1_ENABLED) */
PyObject * libxml_xmlSAXParseFile(PyObject *self, PyObject *args);
#if defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_xmlSaveFile(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_xmlSaveFileEnc(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_xmlSaveFormatFile(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_xmlSaveFormatFileEnc(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_OUTPUT_ENABLED) */
PyObject * libxml_xmlSaveUri(PyObject *self, PyObject *args);
#if defined(LIBXML_LEGACY_ENABLED)
PyObject * libxml_xmlScanName(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_LEGACY_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlSchemaCleanupTypes(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlSchemaCollapseString(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_xmlSchemaDump(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) && defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlSchemaFree(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlSchemaFreeParserCtxt(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlSchemaInitTypes(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlSchemaIsValid(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlSchemaNewDocParserCtxt(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlSchemaNewMemParserCtxt(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlSchemaNewParserCtxt(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlSchemaNewValidCtxt(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlSchemaParse(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlSchemaSetValidOptions(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlSchemaValidCtxtGetOptions(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlSchemaValidCtxtGetParserCtxt(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlSchemaValidateDoc(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlSchemaValidateFile(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlSchemaValidateOneElement(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlSchemaValidateSetFilename(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlSchemaWhiteSpaceReplace(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SCHEMAS_ENABLED) */
PyObject * libxml_xmlSearchNs(PyObject *self, PyObject *args);
PyObject * libxml_xmlSearchNsByHref(PyObject *self, PyObject *args);
PyObject * libxml_xmlSetCompressMode(PyObject *self, PyObject *args);
PyObject * libxml_xmlSetDocCompressMode(PyObject *self, PyObject *args);
PyObject * libxml_xmlSetEntityLoader(PyObject *self, PyObject *args);
PyObject * libxml_xmlSetListDoc(PyObject *self, PyObject *args);
PyObject * libxml_xmlSetNs(PyObject *self, PyObject *args);
#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XINCLUDE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_HTML_ENABLED)
PyObject * libxml_xmlSetNsProp(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XINCLUDE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_HTML_ENABLED) */
#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XINCLUDE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_HTML_ENABLED)
PyObject * libxml_xmlSetProp(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XINCLUDE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_HTML_ENABLED) */
PyObject * libxml_xmlSetTreeDoc(PyObject *self, PyObject *args);
#if defined(LIBXML_SAX1_ENABLED)
PyObject * libxml_xmlSetupParserForBuffer(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_SAX1_ENABLED) */
#if defined(LIBXML_DEBUG_ENABLED) && defined(LIBXML_XPATH_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)
PyObject * libxml_xmlShellPrintNode(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_DEBUG_ENABLED) && defined(LIBXML_XPATH_ENABLED) && defined(LIBXML_OUTPUT_ENABLED) */
#if defined(LIBXML_DEBUG_ENABLED) && defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlShellPrintXPathError(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_DEBUG_ENABLED) && defined(LIBXML_XPATH_ENABLED) */
PyObject * libxml_xmlSkipBlankChars(PyObject *self, PyObject *args);
PyObject * libxml_xmlStopParser(PyObject *self, PyObject *args);
PyObject * libxml_xmlStrEqual(PyObject *self, PyObject *args);
PyObject * libxml_xmlStrQEqual(PyObject *self, PyObject *args);
PyObject * libxml_xmlStrcasecmp(PyObject *self, PyObject *args);
PyObject * libxml_xmlStrcasestr(PyObject *self, PyObject *args);
PyObject * libxml_xmlStrcat(PyObject *self, PyObject *args);
PyObject * libxml_xmlStrchr(PyObject *self, PyObject *args);
PyObject * libxml_xmlStrcmp(PyObject *self, PyObject *args);
PyObject * libxml_xmlStrdup(PyObject *self, PyObject *args);
PyObject * libxml_xmlStringDecodeEntities(PyObject *self, PyObject *args);
PyObject * libxml_xmlStringGetNodeList(PyObject *self, PyObject *args);
PyObject * libxml_xmlStringLenDecodeEntities(PyObject *self, PyObject *args);
PyObject * libxml_xmlStringLenGetNodeList(PyObject *self, PyObject *args);
PyObject * libxml_xmlStrlen(PyObject *self, PyObject *args);
PyObject * libxml_xmlStrncasecmp(PyObject *self, PyObject *args);
PyObject * libxml_xmlStrncat(PyObject *self, PyObject *args);
PyObject * libxml_xmlStrncatNew(PyObject *self, PyObject *args);
PyObject * libxml_xmlStrncmp(PyObject *self, PyObject *args);
PyObject * libxml_xmlStrndup(PyObject *self, PyObject *args);
PyObject * libxml_xmlStrstr(PyObject *self, PyObject *args);
PyObject * libxml_xmlStrsub(PyObject *self, PyObject *args);
PyObject * libxml_xmlSubstituteEntitiesDefault(PyObject *self, PyObject *args);
PyObject * libxml_xmlTextConcat(PyObject *self, PyObject *args);
PyObject * libxml_xmlTextMerge(PyObject *self, PyObject *args);
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderAttributeCount(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderByteConsumed(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderClose(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderConstBaseUri(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderConstEncoding(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderConstLocalName(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderConstName(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderConstNamespaceUri(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderConstPrefix(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderConstString(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderConstValue(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderConstXmlLang(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderConstXmlVersion(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderCurrentDoc(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderCurrentNode(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderDepth(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderExpand(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderGetAttribute(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderGetAttributeNo(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderGetAttributeNs(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderGetParserColumnNumber(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderGetParserLineNumber(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderGetParserProp(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderGetRemainder(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderHasAttributes(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderHasValue(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderIsDefault(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderIsEmptyElement(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderIsNamespaceDecl(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderIsValid(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderLocatorBaseURI(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderLocatorLineNumber(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderLookupNamespace(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderMoveToAttribute(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderMoveToAttributeNo(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderMoveToAttributeNs(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderMoveToElement(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderMoveToFirstAttribute(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderMoveToNextAttribute(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderNext(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderNextSibling(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderNodeType(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderNormalization(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderPreserve(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderQuoteChar(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderRead(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderReadAttributeValue(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED) && defined(LIBXML_WRITER_ENABLED)
PyObject * libxml_xmlTextReaderReadInnerXml(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) && defined(LIBXML_WRITER_ENABLED) */
#if defined(LIBXML_READER_ENABLED) && defined(LIBXML_WRITER_ENABLED)
PyObject * libxml_xmlTextReaderReadOuterXml(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) && defined(LIBXML_WRITER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderReadState(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderReadString(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED) && defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlTextReaderRelaxNGSetSchema(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) && defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_READER_ENABLED) && defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlTextReaderRelaxNGValidate(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) && defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_READER_ENABLED) && defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlTextReaderRelaxNGValidateCtxt(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) && defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_READER_ENABLED) && defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlTextReaderSchemaValidate(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) && defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_READER_ENABLED) && defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlTextReaderSchemaValidateCtxt(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) && defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderSetParserProp(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED) && defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlTextReaderSetSchema(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) && defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderSetup(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
#if defined(LIBXML_READER_ENABLED)
PyObject * libxml_xmlTextReaderStandalone(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_READER_ENABLED) */
PyObject * libxml_xmlThrDefDefaultBufferSize(PyObject *self, PyObject *args);
PyObject * libxml_xmlThrDefDoValidityCheckingDefaultValue(PyObject *self, PyObject *args);
PyObject * libxml_xmlThrDefGetWarningsDefaultValue(PyObject *self, PyObject *args);
PyObject * libxml_xmlThrDefIndentTreeOutput(PyObject *self, PyObject *args);
PyObject * libxml_xmlThrDefKeepBlanksDefaultValue(PyObject *self, PyObject *args);
PyObject * libxml_xmlThrDefLineNumbersDefaultValue(PyObject *self, PyObject *args);
PyObject * libxml_xmlThrDefLoadExtDtdDefaultValue(PyObject *self, PyObject *args);
PyObject * libxml_xmlThrDefParserDebugEntities(PyObject *self, PyObject *args);
PyObject * libxml_xmlThrDefPedanticParserDefaultValue(PyObject *self, PyObject *args);
PyObject * libxml_xmlThrDefSaveNoEmptyTags(PyObject *self, PyObject *args);
PyObject * libxml_xmlThrDefSubstituteEntitiesDefaultValue(PyObject *self, PyObject *args);
PyObject * libxml_xmlThrDefTreeIndentString(PyObject *self, PyObject *args);
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsAegeanNumbers(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsAlphabeticPresentationForms(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsArabic(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsArabicPresentationFormsA(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsArabicPresentationFormsB(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsArmenian(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsArrows(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsBasicLatin(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsBengali(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsBlock(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsBlockElements(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsBopomofo(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsBopomofoExtended(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsBoxDrawing(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsBraillePatterns(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsBuhid(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsByzantineMusicalSymbols(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCJKCompatibility(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCJKCompatibilityForms(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCJKCompatibilityIdeographs(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCJKCompatibilityIdeographsSupplement(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCJKRadicalsSupplement(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCJKSymbolsandPunctuation(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCJKUnifiedIdeographs(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCJKUnifiedIdeographsExtensionA(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCJKUnifiedIdeographsExtensionB(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCat(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatC(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatCc(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatCf(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatCo(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatCs(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatL(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatLl(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatLm(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatLo(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatLt(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatLu(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatM(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatMc(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatMe(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatMn(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatN(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatNd(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatNl(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatNo(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatP(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatPc(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatPd(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatPe(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatPf(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatPi(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatPo(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatPs(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatS(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatSc(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatSk(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatSm(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatSo(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatZ(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatZl(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatZp(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCatZs(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCherokee(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCombiningDiacriticalMarks(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCombiningDiacriticalMarksforSymbols(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCombiningHalfMarks(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCombiningMarksforSymbols(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsControlPictures(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCurrencySymbols(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCypriotSyllabary(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCyrillic(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsCyrillicSupplement(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsDeseret(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsDevanagari(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsDingbats(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsEnclosedAlphanumerics(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsEnclosedCJKLettersandMonths(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsEthiopic(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsGeneralPunctuation(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsGeometricShapes(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsGeorgian(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsGothic(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsGreek(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsGreekExtended(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsGreekandCoptic(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsGujarati(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsGurmukhi(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsHalfwidthandFullwidthForms(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsHangulCompatibilityJamo(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsHangulJamo(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsHangulSyllables(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsHanunoo(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsHebrew(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsHighPrivateUseSurrogates(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsHighSurrogates(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsHiragana(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsIPAExtensions(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsIdeographicDescriptionCharacters(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsKanbun(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsKangxiRadicals(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsKannada(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsKatakana(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsKatakanaPhoneticExtensions(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsKhmer(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsKhmerSymbols(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsLao(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsLatin1Supplement(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsLatinExtendedA(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsLatinExtendedAdditional(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsLatinExtendedB(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsLetterlikeSymbols(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsLimbu(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsLinearBIdeograms(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsLinearBSyllabary(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsLowSurrogates(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsMalayalam(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsMathematicalAlphanumericSymbols(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsMathematicalOperators(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsMiscellaneousMathematicalSymbolsA(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsMiscellaneousMathematicalSymbolsB(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsMiscellaneousSymbols(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsMiscellaneousSymbolsandArrows(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsMiscellaneousTechnical(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsMongolian(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsMusicalSymbols(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsMyanmar(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsNumberForms(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsOgham(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsOldItalic(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsOpticalCharacterRecognition(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsOriya(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsOsmanya(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsPhoneticExtensions(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsPrivateUse(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsPrivateUseArea(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsRunic(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsShavian(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsSinhala(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsSmallFormVariants(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsSpacingModifierLetters(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsSpecials(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsSuperscriptsandSubscripts(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsSupplementalArrowsA(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsSupplementalArrowsB(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsSupplementalMathematicalOperators(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsSupplementaryPrivateUseAreaA(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsSupplementaryPrivateUseAreaB(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsSyriac(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsTagalog(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsTagbanwa(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsTags(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsTaiLe(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsTaiXuanJingSymbols(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsTamil(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsTelugu(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsThaana(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsThai(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsTibetan(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsUgaritic(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsUnifiedCanadianAboriginalSyllabics(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsVariationSelectors(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsVariationSelectorsSupplement(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsYiRadicals(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsYiSyllables(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
#if defined(LIBXML_UNICODE_ENABLED)
PyObject * libxml_xmlUCSIsYijingHexagramSymbols(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_UNICODE_ENABLED) */
PyObject * libxml_xmlURIEscape(PyObject *self, PyObject *args);
PyObject * libxml_xmlURIEscapeStr(PyObject *self, PyObject *args);
PyObject * libxml_xmlURIGetAuthority(PyObject *self, PyObject *args);
PyObject * libxml_xmlURIGetFragment(PyObject *self, PyObject *args);
PyObject * libxml_xmlURIGetOpaque(PyObject *self, PyObject *args);
PyObject * libxml_xmlURIGetPath(PyObject *self, PyObject *args);
PyObject * libxml_xmlURIGetPort(PyObject *self, PyObject *args);
PyObject * libxml_xmlURIGetQuery(PyObject *self, PyObject *args);
PyObject * libxml_xmlURIGetQueryRaw(PyObject *self, PyObject *args);
PyObject * libxml_xmlURIGetScheme(PyObject *self, PyObject *args);
PyObject * libxml_xmlURIGetServer(PyObject *self, PyObject *args);
PyObject * libxml_xmlURIGetUser(PyObject *self, PyObject *args);
PyObject * libxml_xmlURISetAuthority(PyObject *self, PyObject *args);
PyObject * libxml_xmlURISetFragment(PyObject *self, PyObject *args);
PyObject * libxml_xmlURISetOpaque(PyObject *self, PyObject *args);
PyObject * libxml_xmlURISetPath(PyObject *self, PyObject *args);
PyObject * libxml_xmlURISetPort(PyObject *self, PyObject *args);
PyObject * libxml_xmlURISetQuery(PyObject *self, PyObject *args);
PyObject * libxml_xmlURISetQueryRaw(PyObject *self, PyObject *args);
PyObject * libxml_xmlURISetScheme(PyObject *self, PyObject *args);
PyObject * libxml_xmlURISetServer(PyObject *self, PyObject *args);
PyObject * libxml_xmlURISetUser(PyObject *self, PyObject *args);
PyObject * libxml_xmlURIUnescapeString(PyObject *self, PyObject *args);
PyObject * libxml_xmlUTF8Charcmp(PyObject *self, PyObject *args);
PyObject * libxml_xmlUTF8Size(PyObject *self, PyObject *args);
PyObject * libxml_xmlUTF8Strlen(PyObject *self, PyObject *args);
PyObject * libxml_xmlUTF8Strloc(PyObject *self, PyObject *args);
PyObject * libxml_xmlUTF8Strndup(PyObject *self, PyObject *args);
PyObject * libxml_xmlUTF8Strpos(PyObject *self, PyObject *args);
PyObject * libxml_xmlUTF8Strsize(PyObject *self, PyObject *args);
PyObject * libxml_xmlUTF8Strsub(PyObject *self, PyObject *args);
PyObject * libxml_xmlUnlinkNode(PyObject *self, PyObject *args);
#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlUnsetNsProp(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlUnsetProp(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_VALID_ENABLED)
PyObject * libxml_xmlValidCtxtNormalizeAttributeValue(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_VALID_ENABLED) */
#if defined(LIBXML_VALID_ENABLED)
PyObject * libxml_xmlValidNormalizeAttributeValue(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_VALID_ENABLED) */
#if defined(LIBXML_VALID_ENABLED)
PyObject * libxml_xmlValidateDocument(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_VALID_ENABLED) */
#if defined(LIBXML_VALID_ENABLED)
PyObject * libxml_xmlValidateDocumentFinal(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_VALID_ENABLED) */
#if defined(LIBXML_VALID_ENABLED)
PyObject * libxml_xmlValidateDtd(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_VALID_ENABLED) */
#if defined(LIBXML_VALID_ENABLED)
PyObject * libxml_xmlValidateDtdFinal(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_VALID_ENABLED) */
#if defined(LIBXML_VALID_ENABLED)
PyObject * libxml_xmlValidateElement(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_VALID_ENABLED) */
#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_DEBUG_ENABLED) || defined (LIBXML_HTML_ENABLED) || defined(LIBXML_SAX1_ENABLED) || defined(LIBXML_HTML_ENABLED) || defined(LIBXML_WRITER_ENABLED) || defined(LIBXML_DOCB_ENABLED) || defined(LIBXML_LEGACY_ENABLED)
PyObject * libxml_xmlValidateNCName(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_DEBUG_ENABLED) || defined (LIBXML_HTML_ENABLED) || defined(LIBXML_SAX1_ENABLED) || defined(LIBXML_HTML_ENABLED) || defined(LIBXML_WRITER_ENABLED) || defined(LIBXML_DOCB_ENABLED) || defined(LIBXML_LEGACY_ENABLED) */
#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlValidateNMToken(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlValidateName(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_VALID_ENABLED)
PyObject * libxml_xmlValidateNameValue(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_VALID_ENABLED) */
#if defined(LIBXML_VALID_ENABLED)
PyObject * libxml_xmlValidateNamesValue(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_VALID_ENABLED) */
#if defined(LIBXML_VALID_ENABLED)
PyObject * libxml_xmlValidateNmtokenValue(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_VALID_ENABLED) */
#if defined(LIBXML_VALID_ENABLED)
PyObject * libxml_xmlValidateNmtokensValue(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_VALID_ENABLED) */
#if defined(LIBXML_VALID_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlValidateNotationUse(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_VALID_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_VALID_ENABLED)
PyObject * libxml_xmlValidateOneAttribute(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_VALID_ENABLED) */
#if defined(LIBXML_VALID_ENABLED)
PyObject * libxml_xmlValidateOneElement(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_VALID_ENABLED) */
#if defined(LIBXML_VALID_ENABLED)
PyObject * libxml_xmlValidateOneNamespace(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_VALID_ENABLED) */
#if defined(LIBXML_VALID_ENABLED) && defined(LIBXML_REGEXP_ENABLED)
PyObject * libxml_xmlValidatePopElement(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_VALID_ENABLED) && defined(LIBXML_REGEXP_ENABLED) */
#if defined(LIBXML_VALID_ENABLED) && defined(LIBXML_REGEXP_ENABLED)
PyObject * libxml_xmlValidatePushCData(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_VALID_ENABLED) && defined(LIBXML_REGEXP_ENABLED) */
#if defined(LIBXML_VALID_ENABLED) && defined(LIBXML_REGEXP_ENABLED)
PyObject * libxml_xmlValidatePushElement(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_VALID_ENABLED) && defined(LIBXML_REGEXP_ENABLED) */
#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlValidateQName(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_VALID_ENABLED)
PyObject * libxml_xmlValidateRoot(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_VALID_ENABLED) */
#if defined(LIBXML_XINCLUDE_ENABLED)
PyObject * libxml_xmlXIncludeProcess(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XINCLUDE_ENABLED) */
#if defined(LIBXML_XINCLUDE_ENABLED)
PyObject * libxml_xmlXIncludeProcessFlags(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XINCLUDE_ENABLED) */
#if defined(LIBXML_XINCLUDE_ENABLED)
PyObject * libxml_xmlXIncludeProcessTree(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XINCLUDE_ENABLED) */
#if defined(LIBXML_XINCLUDE_ENABLED)
PyObject * libxml_xmlXIncludeProcessTreeFlags(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XINCLUDE_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathAddValues(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathBooleanFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathCastBooleanToNumber(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathCastBooleanToString(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathCastNodeToNumber(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathCastNodeToString(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathCastNumberToBoolean(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathCastNumberToString(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathCastStringToBoolean(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathCastStringToNumber(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathCeilingFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathCmpNodes(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathCompareValues(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathConcatFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathContainsFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathContextSetCache(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathCountFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathDivValues(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathEqualValues(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathErr(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathEval(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathEvalExpr(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathEvalExpression(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathFalseFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathFloorFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathFreeContext(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathFreeParserContext(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathGetContextDoc(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathGetContextNode(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathGetContextPosition(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathGetContextSize(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathGetFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathGetFunctionURI(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathIdFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlXPathInit(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlXPathIsInf(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
PyObject * libxml_xmlXPathIsNaN(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathIsNodeType(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathLangFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathLastFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathLocalNameFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathModValues(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathMultValues(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNamespaceURIFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNewBoolean(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNewCString(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNewContext(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNewFloat(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNewNodeSet(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNewParserContext(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNewString(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNewValueTree(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNextAncestor(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNextAncestorOrSelf(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNextAttribute(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNextChild(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNextDescendant(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNextDescendantOrSelf(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNextFollowing(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNextFollowingSibling(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNextNamespace(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNextParent(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNextPreceding(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNextPrecedingSibling(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNextSelf(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNodeEval(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNodeSetFreeNs(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNormalizeFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNotEqualValues(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNotFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNsLookup(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathNumberFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathOrderDocElems(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathParseNCName(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathParseName(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathParserGetContext(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathPopBoolean(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathPopNumber(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathPopString(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathPositionFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathRegisterAllFunctions(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathRegisterNs(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathRegisterVariable(PyObject *self, PyObject *args);
#endif
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathRegisteredFuncsCleanup(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathRegisteredNsCleanup(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathRegisteredVariablesCleanup(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathRoot(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathRoundFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathSetContextDoc(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathSetContextNode(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathStartsWithFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathStringEvalNumber(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathStringFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathStringLengthFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathSubValues(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathSubstringAfterFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathSubstringBeforeFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathSubstringFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathSumFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathTranslateFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathTrueFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathValueFlipSign(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathVariableLookup(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPathVariableLookupNS(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPATH_ENABLED)
PyObject * libxml_xmlXPatherror(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPATH_ENABLED) */
#if defined(LIBXML_XPTR_ENABLED)
PyObject * libxml_xmlXPtrEval(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPTR_ENABLED) */
#if defined(LIBXML_XPTR_ENABLED)
PyObject * libxml_xmlXPtrEvalRangePredicate(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPTR_ENABLED) */
#if defined(LIBXML_XPTR_ENABLED)
PyObject * libxml_xmlXPtrNewCollapsedRange(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPTR_ENABLED) */
#if defined(LIBXML_XPTR_ENABLED)
PyObject * libxml_xmlXPtrNewContext(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPTR_ENABLED) */
#if defined(LIBXML_XPTR_ENABLED)
PyObject * libxml_xmlXPtrNewLocationSetNodes(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPTR_ENABLED) */
#if defined(LIBXML_XPTR_ENABLED)
PyObject * libxml_xmlXPtrNewRange(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPTR_ENABLED) */
#if defined(LIBXML_XPTR_ENABLED)
PyObject * libxml_xmlXPtrNewRangeNodes(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPTR_ENABLED) */
#if defined(LIBXML_XPTR_ENABLED)
PyObject * libxml_xmlXPtrRangeToFunction(PyObject *self, PyObject *args);
#endif /* defined(LIBXML_XPTR_ENABLED) */
|