代码搜索:self
找到约 10,000 项符合「self」的源代码
代码结果 10,000
www.eeworm.com/read/446504/7577309
py repdownload.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-
######################################################
##
# This program is free software; you can redistribute it and/or modify
# it under the ter
www.eeworm.com/read/446504/7577330
py packagesparser.py
#!/usr/bin/python
# -*- coding: iso-8859-15 -*-
######################################################
##
# This program is free software; you can redistribute it and/or modify
# it under the terms
www.eeworm.com/read/446504/7577332
py mediasplitter.py
#!/usr/bin/python
# -*- coding: iso-8859-15 -*-
######################################################
##
# This program is free software; you can redistribute it and/or modify
# it under the terms
www.eeworm.com/read/446504/7577396
py createaptoncd.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# createAptoncd.py
#
# Author: Laudeci Oliveira
# Rafael Proen莽a
#
# This program is free soft
www.eeworm.com/read/446156/7584971
s keyboard.s
/*
* linux/kernel/keyboard.S
*
* (C) 1991 Linus Torvalds
*/
/*
* Thanks to Alfred Leung for US keyboard patches
* Wolfgang Thiel for German keyboard patches
* Marc Corsini for the French
www.eeworm.com/read/446114/7585354
js showclass_menu.js
stm_bm(['uueoehr',400,'','/images/blank.gif',0,'','',0,0,0,0,0,1,0,0]);
stm_bp('p0',[0,4,0,0,2,2,0,0,100,'filter:Glow(Color=#000000, Strength=3)',4,'',23,50,0,0,'#000000','transparent','',3,0,0,'#000
www.eeworm.com/read/446006/7586809
py listing20-6.py
import sys, re
from handlers import *
from util import *
from rules import *
class Parser:
"""
A Parser reads a text file, applying rules and controlling a
handler.
"""
def __init
www.eeworm.com/read/446006/7586864
py listing24-4.py
from asyncore import dispatcher
from asynchat import async_chat
import socket, asyncore
PORT = 5005
class ChatSession(async_chat):
def __init__(self, sock):
async_chat.__init__(self, so
www.eeworm.com/read/446006/7586865
py listing24-5.py
from asyncore import dispatcher
from asynchat import async_chat
import socket, asyncore
PORT = 5005
NAME = 'TestChat'
class ChatSession(async_chat):
"""
A class that takes care of a connecti
www.eeworm.com/read/446006/7586882
py listing14-3.py
from SocketServer import TCPServer, StreamRequestHandler
class Handler(StreamRequestHandler):
def handle(self):
addr = self.request.getpeername()
print 'Got connection from', add