mirror of
https://github.com/JakeHillion/drgn.git
synced 2024-12-23 01:33:06 +00:00
8b264f8823
drgn was originally my side project, but for awhile now it's also been my work project. Update the copyright headers to reflect this, and add a copyright header to various files that were missing it.
13 lines
225 B
Python
13 lines
225 B
Python
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
# SPDX-License-Identifier: GPL-3.0+
|
|
|
|
import pydoc
|
|
import unittest
|
|
|
|
import drgn
|
|
|
|
|
|
class TestDocs(unittest.TestCase):
|
|
def test_render(self):
|
|
pydoc.render_doc(drgn)
|