Skip to content

Commit

Permalink
Remove commented-out copied code.
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
tomchapman committed Aug 21, 2023
1 parent cbb9823 commit 80eced1
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions bin/update_version_number_in_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,30 +144,6 @@ def get_replacement(match):

return modified

# """Apply all fixes in this module"""
# modified = copy.deepcopy(source)
#
# for replacement in replacements:
# if replacement["new"] is None:
# print(
# "'%s' has been removed, please delete from your code"
# % replacement["old"]
# )
# continue
#
# modified = fix_include_version_header(
# replacement["old"], replacement["headers"], modified
# )
# if replacement["macro"] and replacement["always_defined"]:
# modified = fix_always_defined_macros(
# replacement["old"], replacement["new"], modified
# )
# elif replacement["always_defined"]:
# modified = fix_ifdefs(replacement["old"], modified)
# modified = fix_replacement(replacement["old"], replacement["new"], modified)
#
# return modified


def yes_or_no(question):
"""Convert user input from yes/no variations to True/False"""
Expand Down

0 comments on commit 80eced1

Please sign in to comment.