docs: fix 'make doxygen' under python3

The 'make doxygen' component has this cool vpp specific customization called siphon.
This updates the siphon component so that 'make doxygen' works with python3.

Needed-By:  https://gerrit.fd.io/r/23159

Type: docs

Change-Id: Ie29f1602bf3460b637058acbb0a2f19b128a8824
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
This commit is contained in:
Paul Vinciguerra
2019-11-01 15:07:32 -04:00
committed by Dave Wallace
parent ea1a65135e
commit 464e5e0bfe
13 changed files with 105 additions and 74 deletions

View File

@ -14,12 +14,14 @@
# Generate .siphon source fragments for later processing
import json
import logging
import os, sys, re, json
import os
import re
"""List of (regexp, siphon_name) tuples for matching the start of C
initializer blocks in source files. Each siphon class registers
themselves on tihs list."""
themselves on this list."""
siphon_patterns = []
class Generate(object):