summaryrefslogtreecommitdiff
path: root/lang_ext/python/cext.c
blob: 5336f2d57cd08d6c8858088a5c2f7a76b14fd9aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * upb - a minimalist implementation of protocol buffers.
 *
 * Copyright (c) 2009 Joshua Haberman.  See LICENSE for details.
 *
 */

#include "cext.h"

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