代码搜索结果

找到约 10,000 项符合 Python 的代码

expat3.py

#!/usr/bin/python import sys from xml.parsers import expat class GetElements: def __init__(self,name): self.name = name self.parser = expat.ParserCreate() self.parse

userentry.py

#! python # # $Workfile: UserEntry.py $ $Revision: 6 $ # $Date: 10/07/01 1:48p $ $Author: Sholden $ # import User import pyforms from Error import Error from Params import WEBMASTER class P

userentry.py

#! python # # $Workfile: UserEntry.py $ $Revision: 6 $ # $Date: 10/07/01 1:48p $ $Author: Sholden $ # import User import pyforms from Error import Error from Params import WEBMASTER class P

oscilloscope.py

#!/usr/bin/env python import sys import tos AM_OSCILLOSCOPE = 0x93 class OscilloscopeMsg(tos.Packet): def __init__(self, packet = None): tos.Packet.__init__(self,

ftspdatalogger.py

#!/usr/bin/env python import sys, time import tos AM_TEST_FTSP_MSG = 137 class FtspMsg(tos.Packet): def __init__(self, packet = None): tos.Packet.__init__(self,

ftspdatalogger.py

#!/usr/bin/env python import sys, time import tos AM_TEST_FTSP_MSG = 137 class FtspMsg(tos.Packet): def __init__(self, packet = None): tos.Packet.__init__(self,

oscilloscope.py

#!/usr/bin/env python import sys import tos AM_OSCILLOSCOPE = 0x93 class OscilloscopeMsg(tos.Packet): def __init__(self, packet = None): tos.Packet.__init__(self,

ptr.hpp

#ifndef PTR_DWA20020601_HPP # define PTR_DWA20020601_HPP # include // Copyright David Abrahams 2002. // Distributed under the Boost Software License, Version 1.0

zlibmodule.cpp

/* zlibmodule.c -- gzip-compatible data compression */ /* See http://www.gzip.org/zlib/ */ /* Windows users: read Python's PCbuild\readme.txt */ /* Portions Copyright (c) 2005 - 2007 Nokia Corpor

utf_16_le.py

""" Python 'utf-16-le' Codec Written by Marc-Andre Lemburg (mal@lemburg.com). (c) Copyright CNRI, All Rights Reserved. NO WARRANTY. """ import codecs ### Codec APIs class Codec(codec