summaryrefslogtreecommitdiffstats
path: root/Lib/fileinput.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2008-05-20 06:08:38 (GMT)
committerFred Drake <fdrake@acm.org>2008-05-20 06:08:38 (GMT)
commitd995e1150cab57ed7c885d4b7dd943495022936b (patch)
tree5daaf7592952fd99af8699b93c1d87d0084a9c1d /Lib/fileinput.py
parent1f60af87f5657800e333090fb9b204f54163254e (diff)
downloadcpython-d995e1150cab57ed7c885d4b7dd943495022936b.zip
cpython-d995e1150cab57ed7c885d4b7dd943495022936b.tar.gz
cpython-d995e1150cab57ed7c885d4b7dd943495022936b.tar.bz2
revert creation of the html.entities and html.parser modules
(http://bugs.python.org/issue2882)
Diffstat (limited to 'Lib/fileinput.py')
0 files changed, 0 insertions, 0 deletions
# ensure that 'item_real' is ordered in place of item_iface ) add_dependencies(InterfaceLibrary item_fake_tgt) add_subdirectory(libsdir) add_executable(sharedlibtestexe sharedlibtestexe.cpp) target_link_libraries(sharedlibtestexe shared_iface imported::iface) add_library(broken EXCLUDE_FROM_ALL broken.cpp) add_library(iface_broken INTERFACE) # This is not a dependency, so broken will not be built (and the error in # it will not be hit) target_link_libraries(iface_broken INTERFACE broken) add_library(iface_whitelist INTERFACE) # The target property CUSTOM will never be evaluated on the INTERFACE library. target_link_libraries(iface_whitelist INTERFACE $<$<BOOL:$<TARGET_PROPERTY:CUSTOM>>:irrelevant>) add_executable(exec_whitelist dummy.cpp) target_link_libraries(exec_whitelist iface_whitelist) add_library(iface_imported INTERFACE IMPORTED) set_property(TARGET iface_imported PROPERTY INTERFACE_COMPILE_DEFINITIONS $<$<CONFIG:SPECIAL>:SPECIAL_MODE> $<$<CONFIG:Debug>:DEBUG_MODE> ) set_property(TARGET iface_imported PROPERTY MAP_IMPORTED_CONFIG_DEBUG SPECIAL ) add_executable(map_config map_config.cpp) target_link_libraries(map_config iface_imported)