代码搜索结果
找到约 10,000 项符合
Python 的代码
python.hpp
// Copyright Daniel Wallin 2006. Use, modification and distribution is
// subject to the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.or
python.c
/* Minimal main program -- everything is loaded from the library */
#include "Python.h"
extern DL_EXPORT(int) Py_Main(int, char **);
int
main(int argc, char **argv)
{
return Py_Main(argc,
python.h
/* Portions Copyright (c) 2005 Nokia Corporation */
#ifndef Py_PYTHON_H
#define Py_PYTHON_H
/* Since this is a "meta-include" file, no #ifdef __cplusplus / extern "C" { */
/* Enable compiler f
python.perl
# python.perl by Fred L. Drake, Jr. -*- perl -*-
#
# Heavily based on Guido van Rossum's myformat.perl (now obsolete).
#
# Extension to LaTeX2HTML for documents using myformat.st
python.dir
Python Standard Documentation
* Python Library: (python-lib). Python Library Reference
* Python Mac Modules: (python-mac). Python Macintosh Modules
* Python Reference: (python-ref). Python Ref
python.asdl
-- ASDL's three builtin types are identifier, int, string
-- some useful references:
-- python grammar: http://svn.python.org/view/python/trunk/Grammar/
-- python parser (contains a version of t
python.jjt
// -*- java -*-
//good reading for error handling: https://javacc.dev.java.net/doc/errorrecovery.html
//check Python.asdl for references on the python implementation of the grammar
options
{
python.jjt
// -*- java -*-
//good reading for error handling: https://javacc.dev.java.net/doc/errorrecovery.html
options
{
// only non-defaults are given here.
NODE_SCOPE_HOOK = true; // cal
python.txt
"""Guess which db package to use to open a db file."""
import struct
def whichdb(filename):
"""Guess which db package to use to open a db file.
Return values:
- None if the da