summaryrefslogtreecommitdiff
path: root/lang_ext/python/cext.c
blob: 59e834625abdf670373513a502060a9b900a769f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * upb - a minimalist implementation of protocol buffers.
 *
 * Copyright (c) 2009 Google Inc.  See LICENSE for details.
 * Author: Josh Haberman <jhaberman@gmail.com>
 */

#include "cext.h"

PyMODINIT_FUNC
initcext(void)
{
  PyObject *mod = Py_InitModule("upb.cext", NULL);
  (void)mod;
  initdefinition();
  initpb();
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback