input
stringlengths 0
929
| output
stringlengths 0
10.3k
| task
stringclasses 3
values | index
int64 0
5.38k
| liscence
stringclasses 4
values | source
stringclasses 15
values | instruction
stringlengths 13
3.45k
|
---|---|---|---|---|---|---|
"str"
import decimal
d = decimal . Decimal ( "str" )
for i in range ( 4 ) :
decimal . getcontext ( ) . prec = i
print ( i , "str" , d , d * 1 )
| このpythonコードに誤りはありません。 | code_fix | 4,900 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def test_shorter ( ) :
with pytest . raises ( ValidationError ) :
min_length ( 3 ) ( "str" )
| このpythonコードに誤りはありません。 | code_fix | 4,901 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def get_post_data ( self , random_str ) :
"str"
return {
"str" : "str" . format (
random_label ( ) + random_str ) ,
"str" : "str" ,
"str" : "str" ,
"str" : "str" ,
"str" : "str" ,
"str" : "str" ,
"str" : random_byte ( ) ,
"str" : random_byte ( ) ,
"str" : random_byte ( ) ,
}
| このpythonコードに誤りはありません。 | code_fix | 4,902 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
class PersonRefForm ( Form ) :
"str"
def __init__ ( self , handler , instance , subitem , path , url ) :
self . set_class_from_url ( url , handler )
super ( ) . __init__ ( handler , instance )
self . path = path
self . url = url
self . subitem = subitem
self . edit_fields = [ ]
for field in [ "str" , "str" ] :
self . edit_fields . append ( path + "str" + field )
| このpythonコードに誤りはありません。 | code_fix | 4,903 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def Method1 ( self , message ) :
debug ( TestInterface1_1 + "str" +
"str" + message + "str" )
return "str" + message + "str"
| このpythonコードに誤りはありません。 | code_fix | 4,904 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def abort ( self ) :
if self . _holding_job :
self . qdel ( self . _holding_job . jobid )
else :
for jobid in self . jobids :
self . qdel ( jobid )
| このpythonコードに誤りはありません。 | code_fix | 4,905 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
class ProductCrossSell ( models . Model ) :
product1 = models . ForeignKey ( Product , related_name = "str" )
product2 = models . ForeignKey ( Product , related_name = "str" )
weight = models . IntegerField ( default = 0 )
type = EnumIntegerField ( ProductCrossSellType )
class Meta :
verbose_name = _ ( "str" )
verbose_name_plural = _ ( "str" )
| このpythonコードに誤りはありません。 | code_fix | 4,906 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
from flumotion . common import errors , gstreamer , messages
from flumotion . component import feedcomponent
__version__ = "str"
| このpythonコードに誤りはありません。 | code_fix | 4,907 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def visit ( rule , pos , data ) :
print ( "str" , rule , pos , data )
return None
| このpythonコードに誤りはありません。 | code_fix | 4,908 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def readlines ( self , hint = - 1 ) :
"str"
if self . __encoding is None :
return super ( File , self ) . readlines ( hint )
else :
return [ codecs . decode ( txt , self . __encoding )
for txt in super ( File , self ) . readlines ( hint ) ]
| このpythonコードに誤りはありません。 | code_fix | 4,909 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
"str"
from googlecloudsdk . third_party . apitools . base . py import base_api
from googlecloudsdk . third_party . apis . storage . v1 import storage_v1_messages as messages
| このpythonコードに誤りはありません。 | code_fix | 4,910 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def test_function_transport_freevars ( ) :
ctx = Qit ( )
x = Int ( ) . variable ( "str" )
f = Function ( ) . returns ( Int ( ) ) . code ( "str" , x = x )
g = Function ( ) . returns ( Int ( ) ) . code ( "str" , f = f )
assert 11 == ctx . run ( g ( ) , args = { x : 11 } )
| このpythonコードに誤りはありません。 | code_fix | 4,911 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
from import_package . path_check import PathCheck
from import_package . sub_package . sub_sub_package . deep_module import DeepModule
from same_level_import import SameLevel as ExactlySameLevel
import same_level_import
pc = PathCheck ( )
o = pc . get_rel_os ( ) ( )
o
print ( o )
foo = pc . get_abs_foo ( ) ( )
foo
mod = DeepModule ( )
mod
ldeep = mod . less_deep ( ) ( )
ldeep
x = ExactlySameLevel ( 2 )
out = x . get_field ( )
out
xx = same_level_import . SameLevel ( )
out2 = xx . get_field ( )
out2
| このpythonコードに誤りはありません。 | code_fix | 4,912 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def get_scheduled_backup_limit ( ) :
backup_limit = frappe . db . get_singles_value ( "str" , "str" )
return cint ( backup_limit )
| このpythonコードに誤りはありません。 | code_fix | 4,913 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def test_secant_quadratic_function_1 ( self ) :
function = lambda x : x ** 2 - 4
initial_guess = [ - 5 , 0 ]
root = - 2
secant = Secant ( function , initial_guess )
secant . _find_root ( )
self . assertEqual ( root , secant . root )
| このpythonコードに誤りはありません。 | code_fix | 4,914 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
class TestsBasicStorageCBV ( TemplateView ) :
template_name = "str"
def get_context_data ( self , ** kwargs ) :
context = super ( TestsBasicStorageCBV , self ) . get_context_data ( ** kwargs )
context [ "str" ] = "str"
context [ "str" ] = "str"
return context
| このpythonコードに誤りはありません。 | code_fix | 4,915 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def resistancesComposedOfTwoResistors ( x ) :
results = sortedset ( )
for v1 in x :
for v2 in x :
r = v2 / v1 ;
if r > 0.7 and r < 1.0 / ( 0.7 ) :
results . add ( ( v1 * v2 ) / ( v1 + v2 ) )
return results
| このpythonコードに誤りはありません。 | code_fix | 4,916 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
class Logic ( org_admin . Logic ) :
"str"
def __init__ ( self , model = soc . modules . gci . models . org_admin . GCIOrgAdmin ,
base_model = soc . models . org_admin . OrgAdmin ,
scope_logic = soc . modules . gci . logic . models . organization ,
role_name = "str" , disallow_last_resign = True ) :
"str"
super ( Logic , self ) . __init__ ( model , base_model = base_model ,
scope_logic = scope_logic , role_name = role_name ,
disallow_last_resign = disallow_last_resign )
| このpythonコードに誤りはありません。 | code_fix | 4,917 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
class SystemObject :
"str"
name = None
"str"
conf = None
"str"
impl = None
"str"
def __init__ ( self , name , conf ) :
self . name = name
self . conf = conf
| このpythonコードに誤りはありません。 | code_fix | 4,918 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
from collections import OrderedDict
import copy
from django . utils import six
from core_filters . filters import FilterField
| このpythonコードに誤りはありません。 | code_fix | 4,919 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
from django . conf . urls . defaults import *
from osp . profiles import views
urlpatterns = patterns ( "str" ,
( "str" , views . profile , { } , "str" ) ,
( "str" , views . view_all_activity , { } , "str" ) ,
)
| このpythonコードに誤りはありません。 | code_fix | 4,920 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
from creative_maps . embedded_creative_map import EmbeddedCreativeMap
import gensim
max_seq_length = 30
cmap = EmbeddedCreativeMap ( max_seq_length ,
gensim . models . Word2Vec . load_word2vec_format ( "str" , binary = False ) , 1 , 1 )
cmap . load ( "str" )
inp = "str"
print ( inp , "str" , cmap [ inp ] )
| このpythonコードに誤りはありません。 | code_fix | 4,921 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
import re
import urllib
from module . plugins . captcha . ReCaptcha import ReCaptcha
from module . plugins . internal . SimpleHoster import SimpleHoster , create_getInfo
| このpythonコードに誤りはありません。 | code_fix | 4,922 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def is_file_exists ( file_path ) :
exists = os . path . exists ( file_path )
return exists
| このpythonコードに誤りはありません。 | code_fix | 4,923 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
class XMLHandler ( logging . handlers . BufferingHandler ) :
def __init__ ( self , capacity ) :
logging . handlers . BufferingHandler . __init__ ( self , capacity )
self . setFormatter ( XMLFormatter ( ) )
def flush ( self ) :
if len ( self . buffer ) > 0 :
file = open ( "str" , "str" )
file . write ( self . formatter . format ( self . buffer ) )
file . close ( )
self . buffer = [ ]
| このpythonコードに誤りはありません。 | code_fix | 4,924 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def __init__ ( self , type = "str" , data_type = list , errors = False ) :
super ( RPC , self ) . __init__ ( type = type )
self . errors = errors
self . data_type = data_type
| このpythonコードに誤りはありません。 | code_fix | 4,925 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def BuildKeyboard ( i , j ) :
a = 1
full = "str"
while a <= i :
keyboard = BuildKeyboardLine ( j )
if a != i :
keyboard = keyboard + "str"
full = full + keyboard
a = a + 1
full = full + "str"
return full
| このpythonコードに誤りはありません。 | code_fix | 4,926 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def for_target ( self , target , types = None , flags = None ) :
"str"
ct = ContentType . objects . get_for_model ( target )
activities = Activity . objects . filter ( target_ct = ct ,
target_id = target . pk )
if types :
activities = activities . filter ( type__in = [ t . id for t in types ] )
if flags :
activities = self . _filter_flags ( activities , flags )
return activities . order_by ( "str" )
| このpythonコードに誤りはありません。 | code_fix | 4,927 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def get_history_jid ( self ) :
span = self . document . xpath ( "str" )
if len ( span ) > 1 :
return None
span = self . document . xpath ( "str" ) [ 0 ]
jid = span . attrib [ "str" ] . split ( "str" ) [ 1 ]
return jid
| このpythonコードに誤りはありません。 | code_fix | 4,928 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
class Entity ( object ) :
"str"
def __init__ ( self , data ) :
"str"
self . data = data
self . index = "str"
self . doc_type = "str"
self . _id = data [ "str" ]
def json ( self ) :
"str"
return json . dumps ( self . data )
| このpythonコードに誤りはありません。 | code_fix | 4,929 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def testSwitchingFoldersWhileRefreshingEnablesRefreshButton ( self ) :
self . Open ( "str" )
self . Click ( "str" )
self . WaitUntil ( self . IsElementPresent ,
"str" )
self . Click ( "str" )
self . WaitUntilNot ( self . IsElementPresent ,
"str" )
| このpythonコードに誤りはありません。 | code_fix | 4,930 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
import logging as log
import numpy as np
import enum
from collections import defaultdict
| このpythonコードに誤りはありません。 | code_fix | 4,931 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def _find_owner_birthday ( self , text ) :
birthdayExt = BirthdayExtractor ( self . entry , self . errorLogger , self . xmlDocument )
birthdayExt . setDependencyMatchPositionToZero ( )
self . birthday = birthdayExt . extract ( text , self . entry )
| このpythonコードに誤りはありません。 | code_fix | 4,932 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def __init__ ( self , target = None , group = None , name = None , verbose = None , args = None , kwargs = None , daemon = None ) :
"str"
threading . Thread . __init__ ( self , group = group , target = target , name = name , daemon = daemon )
self . args = args
self . kwargs = kwargs
self . alertaActual = None
return
| このpythonコードに誤りはありません。 | code_fix | 4,933 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def to_base256 ( addr ) :
addr = addr . split ( "str" )
num = 0
for e in range ( 3 , - 1 , - 1 ) :
num += int ( addr [ 3 - e ] ) * 256 ** e
return str ( num )
| このpythonコードに誤りはありません。 | code_fix | 4,934 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def refresh ( self ) :
"str"
value_changed ( self )
| このpythonコードに誤りはありません。 | code_fix | 4,935 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def calc_wwo ( all_words ) :
words1 = all_words [ 0 ]
words2 = all_words [ 1 ]
wwc1 = calc_wwc ( words1 , words2 )
wwc2 = calc_wwc ( words2 , words1 )
if wwc1 + wwc2 == 0 :
return [ 0 ]
else :
return [ 2 * wwc1 * wwc2 / ( wwc1 + wwc2 ) ]
| このpythonコードに誤りはありません。 | code_fix | 4,936 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
"str"
import numpy as np
from scipy import interpolate
import materials . basefunctions as bf
| このpythonコードに誤りはありません。 | code_fix | 4,937 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def parse_postfix ( infile ) :
"str"
import re
fileStr = infile . read ( )
infile . seek ( 0 , 0 )
pattern = re . compile ( "str" , re . M | re . I )
matches = pattern . search ( fileStr )
if matches :
return matches . group ( 0 )
else :
return None
| このpythonコードに誤りはありません。 | code_fix | 4,938 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def factorial ( n ) :
result = 1
while n > 0 :
result *= n
n -= 1
return result
| このpythonコードに誤りはありません。 | code_fix | 4,939 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
"str"
import tornado . database
from entity import Entity
from index import Index
db = tornado . database . Connection (
"str" ,
"str" ,
"str" ,
"str"
)
user = Entity ( "str" , "str" , {
"str" : "str" ,
"str" : "str" ,
} , db )
user . add_index ( Index ( user , "str" ) )
user . add_index ( Index ( user , "str" ) )
| このpythonコードに誤りはありません。 | code_fix | 4,940 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
class Test_dhydrology_tests ( unittest . TestCase ) :
DHydrology . LIBRARY_PATH = "str"
def test_A ( self ) :
hyd = DHydrology ( )
hyd . solve ( "str" )
hyd . finalize ( )
def test_B ( self ) :
hyd = DHydrology ( )
hyd . solve ( "str" )
hyd . finalize ( )
| このpythonコードに誤りはありません。 | code_fix | 4,941 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
class InstanceDetailTabs ( tabs . TabGroup ) :
slug = "str"
tabs = ( OverviewTab , LogTab , VNCTab )
| このpythonコードに誤りはありません。 | code_fix | 4,942 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def get_context_data ( self , ** kwargs ) :
context = super ( ProductPackageView , self ) . get_context_data ( ** kwargs )
context [ "str" ] = _ ( "str" ) % self . object
context [ "str" ] = self . object . is_package_parent ( )
return context
| このpythonコードに誤りはありません。 | code_fix | 4,943 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
import testtools
from openstack . key_management . v1 import secret
IDENTIFIER = "str"
EXAMPLE = {
"str" : "str" ,
"str" : "str" ,
"str" : "str" ,
"str" : "str" ,
"str" : "str" ,
"str" : "str" ,
"str" : IDENTIFIER ,
"str" : "str" ,
"str" : "str" ,
}
| このpythonコードに誤りはありません。 | code_fix | 4,944 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def test_fail_create_virtualenv_missing_python ( self ) :
e = self . assertRaises (
SystemExit , utils . make_virtualenv , TEST_VENV ,
"str" )
self . assertEqual ( "str" , str ( e ) )
| このpythonコードに誤りはありません。 | code_fix | 4,945 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def test_about ( self ) :
response = self . get ( "str" )
self . assertEqual ( response . status_code , 200 )
| このpythonコードに誤りはありません。 | code_fix | 4,946 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def main ( ) :
initialization ( )
MY_WINDOW = open_a_window ( WINDOW_DIMENSIONS )
apply_background_color ( MY_WINDOW , BACKGROUND_COLOR )
for center in SIDE_CIRCLES_CENTERS :
pygame . draw . circle ( MY_WINDOW , SIDE_CIRCLES_COLOR , center , SIDE_CIRCLES_RADIUS )
pygame . display . flip ( )
pygame . time . wait ( 2000 )
close_everything_properly ( )
| このpythonコードに誤りはありません。 | code_fix | 4,947 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def getTokenFromAPI ( self ) :
jsonData = self . getTokenJson ( ) ;
return jsonData [ "str" ]
| このpythonコードに誤りはありません。 | code_fix | 4,948 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def trim_thumbnail_cache ( ) :
while _current_cache_size > _max_cache_size :
entry = _cache_by_time [ 0 ]
del _cache_by_frame [ entry . frame_key ]
del _cache_by_time [ 0 ]
if isinstance ( entry . image , QImage ) :
current_cache_size -= entry . image . byteCount ( )
| このpythonコードに誤りはありません。 | code_fix | 4,949 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def __get_pkg_path ( cls , pkg , file_name = "str" ) :
pkg_path = os . path . dirname ( pkg . __file__ )
if file_name :
pkg_path = os . path . join ( pkg_path , file_name )
return pkg_path
| このpythonコードに誤りはありません。 | code_fix | 4,950 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def getClock ( ) :
"str"
return BasicClock ( )
| このpythonコードに誤りはありません。 | code_fix | 4,951 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
from custom . ilsgateway . models import SupplyPointStatusTypes , DeliveryGroups
from custom . ilsgateway . tanzania . reminders import REMINDER_R_AND_R_FACILITY , REMINDER_R_AND_R_DISTRICT
from custom . ilsgateway . tanzania . reminders . reminder import GroupReminder
| このpythonコードに誤りはありません。 | code_fix | 4,952 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
"str"
__revision__ = "str"
import TestObject
| このpythonコードに誤りはありません。 | code_fix | 4,953 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def preprocess ( self , hash , hashes ) :
"str"
return self . addHashGlobals ( hash )
| このpythonコードに誤りはありません。 | code_fix | 4,954 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def get_mnist_format ( img ) :
img = cv2 . resize ( img , ( 28 , 28 ) , interpolation = cv2 . INTER_AREA )
img = np . float32 ( np . array ( [ img . flatten ( ) ] ) )
img /= np . amax ( img )
return img
| このpythonコードに誤りはありません。 | code_fix | 4,955 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def ButtonLeft ( self , state ) :
"str"
ctx = self . manager . contexts . active
if not ctx :
return
if state == BUT_UP :
ctx . graph . addVertex ( self . tmpVertex )
self . manager . parent . sidebar . UpdateVertexList ( )
ctx . HUDstatus = "str" % (
self . tmpVertex . id , self . tmpVertex . pos [ 0 ] , self . tmpVertex . pos [ 1 ] , self . tmpVertex . pos [ 2 ] )
self . manager . pop ( self . stack )
| このpythonコードに誤りはありません。 | code_fix | 4,956 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def submission_handler ( database , submissions , message ) :
message [ "str" ] = str ( uuid . uuid4 ( ) ) . replace ( "str" , "str" )
validate_message ( message )
submissions . append ( message )
exhibit . save_submissions ( submissions )
return { "str" : "str" }
| このpythonコードに誤りはありません。 | code_fix | 4,957 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def test_shifts_api_endpoint ( factories , api_client ) :
factories . DepartmentFactory . create_batch ( 30 )
list_url = reverse ( "str" )
response = api_client . get ( list_url )
assert response . status_code == 200 , response . data
assert response . data . get ( "str" )
| このpythonコードに誤りはありません。 | code_fix | 4,958 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def _argstxt_changed ( self , value ) :
"str"
self . VALUES [ self . name ] [ "str" ] = ustr ( value )
| このpythonコードに誤りはありません。 | code_fix | 4,959 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
from __future__ import unicode_literals
import connected_accounts . fields
from django . db import migrations , models
| このpythonコードに誤りはありません。 | code_fix | 4,960 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def promptUser ( prompt ) :
print ( prompt )
sys . stdout . flush ( )
return raw_input ( "str" ) in [ "str" , "str" , "str" , "str" , "str" ]
| このpythonコードに誤りはありません。 | code_fix | 4,961 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def get_pixbufs ( self , single = False ) :
"str"
if not self . _window . displayed_double ( ) or single :
return self . _get_pixbuf ( self . _current_image_index )
return ( self . _get_pixbuf ( self . _current_image_index ) ,
self . _get_pixbuf ( self . _current_image_index + 1 ) )
| このpythonコードに誤りはありません。 | code_fix | 4,962 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
from ListGeoms import ListGeoms
from Geom import Geom
from IRC import IRC
from Scan import Scan
| このpythonコードに誤りはありません。 | code_fix | 4,963 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def get_version ( self ) :
return "str" . format (
version = irc . client . VERSION_STRING )
| このpythonコードに誤りはありません。 | code_fix | 4,964 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def MakeSetName ( prop_name ) :
"str"
return "str" + ToCamelCase ( prop_name )
| このpythonコードに誤りはありません。 | code_fix | 4,965 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
from sklearn . externals import joblib
from datetime import datetime
import numpy as np
| このpythonコードに誤りはありません。 | code_fix | 4,966 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
__author__ = "str"
from point import Point
import string
import random
| このpythonコードに誤りはありません。 | code_fix | 4,967 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
class TrackType ( Enum ) :
LeftA = 0
LeftB = 1
LeftAB = 2
RightA = 3
RightB = 4
RightAB = 5
LeftCurb = 6
RightCurb = 7
Limit = 8
| このpythonコードに誤りはありません。 | code_fix | 4,968 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
"str"
from os . path import splitext , basename
from tools . targets import TARGET_MAP
from tools . export . exporters import Exporter , apply_supported_whitelist
POST_BINARY_WHITELIST = set ( [
"str" ,
"str" ,
"str"
] )
| このpythonコードに誤りはありません。 | code_fix | 4,969 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
import sys
from PyQt4 . QtGui import *
app = QApplication ( sys . argv )
button = QPushButton ( "str" , None )
button . show ( )
app . exec_ ( )
| このpythonコードに誤りはありません。 | code_fix | 4,970 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def test_theta_disconnect ( self ) :
import networkx as nx
G = nx . Graph ( )
G . add_node ( 1 )
G . add_node ( 2 )
self . assertRaises ( RuntimeError , lambda : markovmc . theta ( G , 1 ) )
| このpythonコードに誤りはありません。 | code_fix | 4,971 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def register ( name , factory ) :
"str"
factory_setup ( name , factory )
available_types [ factory . name ] = factory
| このpythonコードに誤りはありません。 | code_fix | 4,972 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def get_next_valid_date ( self , refDate , delta ) :
while self . dates :
nextDate = self . dates . pop ( 0 )
if nextDate - refDate > delta :
return nextDate
| このpythonコードに誤りはありません。 | code_fix | 4,973 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
"str"
from . bed_reader import BedReader
from . query_utils import query_and
from . query_utils import build_geno_query
from . geno_iterator import GIter
__all__ = [ "str" , "str" , "str" ]
| このpythonコードに誤りはありません。 | code_fix | 4,974 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
class RecordingHttpConnection ( RecordingConnection ) :
_realConnection = httplib . HTTPConnection
def __init__ ( self , file , * args , ** kwds ) :
RecordingConnection . __init__ ( self , file , "str" , * args , ** kwds )
| このpythonコードに誤りはありません。 | code_fix | 4,975 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
from . laserData import LaserData
from . image import Image
from . pose3d import Pose3d
from . cmdvel import CMDVel
from . rgbd import Rgbd
from . navdataData import NavdataData
| このpythonコードに誤りはありません。 | code_fix | 4,976 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
class Course ( models . Model ) :
courseID = models . CharField ( max_length = 16 , null = False , unique = True )
pre = models . ForeignKey ( "str" , related_name = "str" , null = True )
name = models . CharField ( max_length = 128 )
current_student = models . IntegerField ( default = 0 )
max_student = models . IntegerField ( )
introduction = models . TextField ( )
score = models . IntegerField ( )
public = models . BooleanField ( default = True )
| このpythonコードに誤りはありません。 | code_fix | 4,977 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def skip ( cls , options ) :
"str"
pass
| このpythonコードに誤りはありません。 | code_fix | 4,978 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def get_status ( hsmap ) :
for k , v in hsmap . iteritems ( ) :
host = v [ 0 ] . host
svcs = [ item . path for item in v ]
cmd = "str" % ( host . url , host . user , host . password , "str" . join ( svcs ) )
output = os . popen ( cmd ) . read ( ) . strip ( )
descs = output . split ( "str" )
for svc , desc in zip ( v , descs ) :
svc . description = desc
| このpythonコードに誤りはありません。 | code_fix | 4,979 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
class Main ( BasePlugin ) :
mainCmd = None
subCmdList = [ ]
@ staticmethod
def init ( ) :
Main . mainCmd = Cmd ( title = "str" , desc = "str" , icon = "str" , cmd = "str" , onRunCmd = Main . run )
@ staticmethod
def run ( param ) :
BasePlugin . bash ( [ "str" ] )
return RetVal . close
| このpythonコードに誤りはありません。 | code_fix | 4,980 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def test_context_manager_with_magic_mock ( self ) :
mock = MagicMock ( )
with self . assertRaises ( TypeError ) :
with mock :
"str" + 3
mock . __enter__ . assert_called_with ( )
self . assertTrue ( mock . __exit__ . called )
| このpythonコードに誤りはありません。 | code_fix | 4,981 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def test_that_check_output_handles_exception ( self ) :
subprocess . check_output = MagicMock (
side_effect = subprocess . CalledProcessError (
17 , "str" , "str" ) )
with self . assertRaises ( ToolbeltException ) :
self . sut . check_output ( )
| このpythonコードに誤りはありません。 | code_fix | 4,982 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def CreateAppStates ( client , settings ) :
"str"
global s_appStatesSingleton
s_appStatesSingleton = FabricApplicationStates ( client , settings )
return s_appStatesSingleton
| このpythonコードに誤りはありません。 | code_fix | 4,983 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def create ( emailaddress , label ) :
"str"
return EmailAddress (
emailaddress = emailaddress ,
label = label ,
)
| このpythonコードに誤りはありません。 | code_fix | 4,984 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def __format__ ( self , format_spec ) :
"str"
return self . __class__ . __name__ + "str" + self . __scenario_id + "str"
| このpythonコードに誤りはありません。 | code_fix | 4,985 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def GetManagers ( self , proto ) :
"str"
managers = [ ]
for service in self . services . keys ( ) :
if "str" in self . services [ service ] :
if self . services [ service ] [ "str" ] . has_key ( proto ) :
managers . append ( service )
return managers
| このpythonコードに誤りはありません。 | code_fix | 4,986 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def test_stop_with_no_mis ( self ) :
stop = new_stop ( )
stop . mis_id = 37
self . db_session . add ( stop )
self . assertRaises ( IntegrityError , self . db_session . flush )
| このpythonコードに誤りはありません。 | code_fix | 4,987 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
__requires__ = [ "str" , "str" ]
import pkg_resources
from httpca_web import app
from httpca_web import model
model . create_tables ( app . config [ "str" ] , True )
| このpythonコードに誤りはありません。 | code_fix | 4,988 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def onCountDownRadioButton ( self , event ) :
self . datePicker . Disable ( )
self . clockPicker . Disable ( )
self . countDownTimePicker . Enable ( )
| このpythonコードに誤りはありません。 | code_fix | 4,989 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def get_extensions ( show_all = False ) :
"str"
return [ extension [ "str" ]
for extension in data_extensions
if show_all or extension [ "str" ] ]
| このpythonコードに誤りはありません。 | code_fix | 4,990 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def test_post_on_hg_slack ( self , message ) :
print ( self . sc . api_call ( "str" , channel = "str" ) )
return self . sc . api_call (
"str" , channel = "str" , text = "str" + message ,
username = "str" , icon_emoji = "str"
)
| このpythonコードに誤りはありません。 | code_fix | 4,991 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def generate_hash ( user_agent , screen_resolution , screen_color_depth ) :
tmpstr = "str" % ( user_agent , screen_resolution , screen_color_depth )
hash_val = 1
if tmpstr :
hash_val = 0
for ordinal in map ( ord , tmpstr [ : : - 1 ] ) :
hash_val = ( ( hash_val << 6 ) & 0xfffffff ) + ordinal + ( ordinal << 14 )
left_most_7 = hash_val & 0xfe00000
if left_most_7 != 0 :
hash_val ^= left_most_7 >> 21
return hash_val
| このpythonコードに誤りはありません。 | code_fix | 4,992 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def with_defaults ( self , defaults ) :
"str"
ks = set ( pd . name for pd in self . param_defs )
for k in defaults :
if k not in ks :
raise AttributeError ( "str"
"str" % k )
param_defs = [ ]
for param_def in self . param_defs :
k = param_def . name
if k in defaults :
param_def = param_def . with_default ( defaults [ k ] )
param_defs . append ( param_def )
return type ( self ) ( * param_defs )
| このpythonコードに誤りはありません。 | code_fix | 4,993 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
from django . contrib import admin
from kkwp . archive . models import ArchiveFile , Tag
admin . site . register ( Tag )
admin . site . register ( ArchiveFile )
| このpythonコードに誤りはありません。 | code_fix | 4,994 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
from example . settings . postgres import *
DEBUG = False
TEMPLATE_DEBUG = DEBUG
| このpythonコードに誤りはありません。 | code_fix | 4,995 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
"str"
from __future__ import ( absolute_import , division ,
print_function , unicode_literals )
from builtins import *
import sys
import six
from . . import util
from . . import GOPCA , GOPCARun , GOPCASignatureMatrix
from . import arguments
if six . PY2 :
import cPickle as pickle
else :
import pickle
| このpythonコードに誤りはありません。 | code_fix | 4,996 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def dfs_topsort ( graph ) :
L = [ ]
color = { u : "str" for u in graph }
found_cycle = [ False ]
for u in graph :
if color [ u ] == "str" :
dfs_visit ( graph , u , color , L , found_cycle )
if found_cycle [ 0 ] :
break
if found_cycle [ 0 ] :
L = [ ]
L . reverse ( )
return L
| このpythonコードに誤りはありません。 | code_fix | 4,997 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
class TestStaticViews ( AppTestCase ) :
files = [
"str" ,
"str"
]
def test_files ( self ) :
for f in self . files :
response = self . client . get ( "str" . format ( f ) )
eq_ ( response . status_code , 200 )
| このpythonコードに誤りはありません。 | code_fix | 4,998 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |
def __iter__ ( self ) :
"str"
return self . _map . __iter__ ( )
| このpythonコードに誤りはありません。 | code_fix | 4,999 | MIT | bifi | 次に示すpythonコードの誤りを修正しなさい。 |