我们从Python开源项目中,提取了以下7个代码示例,用于说明如何使用utils.intget()。
def data(): """Returns the data sent with the request.""" if 'data' not in ctx: cl = intget(ctx.env.get('CONTENT_LENGTH'), 0) ctx.data = ctx.env['wsgi.input'].read(cl) return ctx.data