bugged stringlengths 4 228k | fixed stringlengths 0 96.3M | __index_level_0__ int64 0 481k |
|---|---|---|
def parse_error(self, mess, tag, text, start): raise ParseError, "%s, for tag %s, on line %s of %s<p>" % ( mess, self.errQuote(tag), len(text[:start].split('\n')), self.errQuote(self.__name__)) | def parse_error(self, mess, tag, text, start): raise ParseError, "%s, for tag %s, on line %s of %s" % ( mess, self.errQuote(tag), len(text[:start].split('\n')), self.errQuote(self.__name__)) | 2,400 |
def query(self, ignored): | def query(self, ignored): | 2,401 |
def marshal_tuple(n,l): return join(map(lambda v, n=n: "%s:tuple=%s" % (n,quote(v)),l),'&') | def marshal_tuple(n,l): return join(map(lambda v, n=n: "%s:tuple=%s" % (n,quote(v)),l),'&') | 2,402 |
def ErrorTypes(code): if code >= 400 && code < 500: return NotFound if code >= 500 && code < 600: return ServerError return 'HTTP_Error_%s' % code | def ErrorTypes(code): if code >= 400 and code < 500: return NotFound if code >= 500 and code < 600: return ServerError return 'HTTP_Error_%s' % code | 2,403 |
def __bobo_traverse__(self, REQUEST, name): if name[-9:]=='__draft__': return getattr(self, name) | def __bobo_traverse__(self, REQUEST, name): if name[-9:]=='__draft__': return getattr(self, name) | 2,404 |
def manage_addFolder(self,id,title='',createPublic=0,createUserF=0, REQUEST=None): """Add a new Folder object with id *id*. If the 'createPublic' and 'createUserF' parameters are set to any true value, an 'index_html' and a 'UserFolder' objects are created respectively in the new folder. """ i=self.folderClass()() i.id=id i.title=title self._setObject(id,i) if createUserF: i.manage_addUserFolder() if createPublic: i.manage_addDTMLDocument(id='index_html',title='') if REQUEST is not None: return self.manage_main(self,REQUEST,update_menu=1) | def manage_addFolder(self,id,title='',createPublic=0,createUserF=0, REQUEST=None): """Add a new Folder object with id *id*. If the 'createPublic' and 'createUserF' parameters are set to any true value, an 'index_html' and a 'UserFolder' objects are created respectively in the new folder. """ i=self.folderClass()() i.id=id i.title=title self._setObject(id,i) if createUserF: i.manage_addUserFolder() if createPublic: i.manage_addDTMLDocument(id='index_html',title='') if REQUEST is not None: return self.manage_main(self,REQUEST,update_menu=1) | 2,405 |
def manage_importObject(self,file,REQUEST=None): "Import an object from a file" if find(file,'..') != -1: raise ValueError, 'Bad file name %s' % file f=os.path.join(INSTANCE_HOME,'Import',file) o=self._p_jar.import_file(f) id=o.id if hasattr(id,'im_func'): id=id() self._setObject(id,o) if REQUEST is not None: return MessageDialog(title='Object imported', message='<EM>%s</EM> sucessfully imported' % id, action='manage_main' ) | def manage_importObject(self, file, REQUEST=None): """Import an object from a file""" dirname, file=os.path.split(file) if dirname: raise 'Bad Request', 'Invalid file name %s' % file file=os.path.join(INSTANCE_HOME, 'import', file) if not os.path.exists(file): raise 'Bad Request', 'File does not exist: %s' % file ob=self._p_jar.import_file(file) if REQUEST: self._verifyObjectPaste(ob, REQUEST) id=ob.id if hasattr(id, 'im_func'): id=id() self._setObject(id, ob) if REQUEST is not None: return MessageDialog(title='Object imported', message='<EM>%s</EM> sucessfully imported' % id, action='manage_main' ) | 2,406 |
def manage_importObject(self,file,REQUEST=None): "Import an object from a file" if find(file,'..') != -1: raise ValueError, 'Bad file name %s' % file f=os.path.join(INSTANCE_HOME,'Import',file) o=self._p_jar.import_file(f) id=o.id if hasattr(id,'im_func'): id=id() self._setObject(id,o) if REQUEST is not None: return MessageDialog(title='Object imported', message='<EM>%s</EM> sucessfully imported' % id, action='manage_main' ) | def manage_importObject(self,file,REQUEST=None): "Import an object from a file" if find(file,'..') != -1: raise ValueError, 'Bad file name %s' % file f=os.path.join(INSTANCE_HOME,'Import',file) o=self._p_jar.import_file(f) id=o.id if hasattr(id,'im_func'): id=id() self._setObject(id,o) if REQUEST is not None: return MessageDialog( title='Object imported', message='<EM>%s</EM> sucessfully imported' % id, action='manage_main' ) | 2,407 |
def doc_strong(self, s, expr = re.compile(r'\*\*([%s%s%s\s]+?)\*\*' % (letters, digits, strongem_punc)).search #expr = re.compile(r'\s*\*\*([ \n\r%s0-9.:/;,\'\"\?\-\_\/\=\-\>\<\(\)]+)\*\*(?!\*|-)' % letters).search, # old expr, inconsistent punc, failed to cross newlines. ): | def doc_strong(self, s, expr = re.compile(r'\*\*([%s%s%s\s]+?)\*\*' % (letters, digits, strongem_punc)).search #expr = re.compile(r'\s*\*\*([ \n\r%s0-9.:/;,\'\"\?\-\_\/\=\-\>\<\(\)]+)\*\*(?!\*|-)' % letters).search, # old expr, inconsistent punc, failed to cross newlines. ): | 2,408 |
def doc_href(self, s, expr1 = re.compile(_DQUOTEDTEXT + "(:)" + _URL_AND_PUNC + _SPACES).search, expr2 = re.compile(_DQUOTEDTEXT + r'(\,\s+)' + _URL_AND_PUNC + _SPACES).search): punctuation = re.compile(r"[\,\.\?\!\;]+").match r=expr1(s) or expr2(s) | def doc_href(self, s, expr1 = re.compile(_DQUOTEDTEXT + "(:)" + _ABS_AND_RELATIVE_URL + _SPACES).search, expr2 = re.compile(_DQUOTEDTEXT + r'(\,\s+)' + _ABSOLUTE_URL + _SPACES).search): punctuation = re.compile(r"[\,\.\?\!\;]+").match r=expr1(s) or expr2(s) | 2,409 |
def install_product(app, product_dir, product_name, meta_types, folder_permissions, raise_exc=0, log_exc=1): path_join=os.path.join isdir=os.path.isdir exists=os.path.exists global_dict=globals() silly=('__doc__',) if 1: # Preserve indentation for diff :-) package_dir=path_join(product_dir, product_name) __traceback_info__=product_name if not isdir(package_dir): return if not exists(path_join(package_dir, '__init__.py')): if not exists(path_join(package_dir, '__init__.pyc')): if not exists(path_join(package_dir, '__init__.pyo')): return try: product=__import__("Products.%s" % product_name, global_dict, global_dict, silly) # Install items into the misc_ namespace, used by products # and the framework itself to store common static resources # like icon images. misc_=pgetattr(product, 'misc_', {}) if misc_: if isinstance(misc_, dict): misc_=Misc_(product_name, misc_) Application.misc_.__dict__[product_name]=misc_ # Here we create a ProductContext object which contains # information about the product and provides an interface # for registering things like classes and help topics that # should be associated with that product. Products are # expected to implement a method named 'initialize' in # their __init__.py that takes the ProductContext as an # argument. productObject=App.Product.initializeProduct( product, product_name, package_dir, app) context=ProductContext(productObject, app, product) # Look for an 'initialize' method in the product. If it does # not exist, then this is an old product that has never been # updated. In that case, we will analyze the product and # build up enough information to do initialization manually. initmethod=pgetattr(product, 'initialize', None) if initmethod is not None: initmethod(context) # Support old-style product metadata. Older products may # define attributes to name their permissions, meta_types, # constructors, etc. permissions={} new_permissions={} if pgetattr(product, '__ac_permissions__', None) is not None: warn('__init__.py of %s has a long deprecated ' '\'__ac_permissions__\' attribute. ' '\'__ac_permissions__\' will be ignored by ' 'install_product in Zope 2.10. Please use registerClass ' 'instead.' % product.__name__, DeprecationWarning) for p in pgetattr(product, '__ac_permissions__', ()): permission, names, default = ( tuple(p)+('Manager',))[:3] if names: for name in names: permissions[name]=permission elif not folder_permissions.has_key(permission): new_permissions[permission]=() if pgetattr(product, 'meta_types', None) is not None: warn('__init__.py of %s has a long deprecated \'meta_types\' ' 'attribute. \'meta_types\' will be ignored by ' 'install_product in Zope 2.10. Please use registerClass ' 'instead.' % product.__name__, DeprecationWarning) for meta_type in pgetattr(product, 'meta_types', ()): # Modern product initialization via a ProductContext # adds 'product' and 'permission' keys to the meta_type # mapping. We have to add these here for old products. pname=permissions.get(meta_type['action'], None) if pname is not None: meta_type['permission']=pname meta_type['product']=productObject.id meta_type['visibility'] = 'Global' meta_types.append(meta_type) if pgetattr(product, 'methods', None) is not None: warn('__init__.py of %s has a long deprecated \'methods\' ' 'attribute. \'methods\' will be ignored by ' 'install_product in Zope 2.10. Please use registerClass ' 'instead.' % product.__name__, DeprecationWarning) for name,method in pgetattr( product, 'methods', {}).items(): if not hasattr(Folder.Folder, name): setattr(Folder.Folder, name, method) if name[-9:]!='__roles__': # not Just setting roles if (permissions.has_key(name) and not folder_permissions.has_key( permissions[name])): permission=permissions[name] if new_permissions.has_key(permission): new_permissions[permission].append(name) else: new_permissions[permission]=[name] if new_permissions: new_permissions=new_permissions.items() for permission, names in new_permissions: folder_permissions[permission]=names new_permissions.sort() Folder.Folder.__ac_permissions__=tuple( list(Folder.Folder.__ac_permissions__)+new_permissions) if not doInstall(): transaction().abort() else: transaction.get().note('Installed product '+product_name) transaction.commit() except: if log_exc: LOG.error('Couldn\'t install %s' % product_name, exc_info=sys.exc_info()) transaction.abort() if raise_exc: raise | def install_product(app, product_dir, product_name, meta_types, folder_permissions, raise_exc=0, log_exc=1): path_join=os.path.join isdir=os.path.isdir exists=os.path.exists global_dict=globals() silly=('__doc__',) if 1: # Preserve indentation for diff :-) package_dir=path_join(product_dir, product_name) __traceback_info__=product_name if not isdir(package_dir): return if not exists(path_join(package_dir, '__init__.py')): if not exists(path_join(package_dir, '__init__.pyc')): if not exists(path_join(package_dir, '__init__.pyo')): return try: product=__import__("Products.%s" % product_name, global_dict, global_dict, silly) # Install items into the misc_ namespace, used by products # and the framework itself to store common static resources # like icon images. misc_=pgetattr(product, 'misc_', {}) if misc_: if isinstance(misc_, dict): misc_=Misc_(product_name, misc_) Application.misc_.__dict__[product_name]=misc_ # Here we create a ProductContext object which contains # information about the product and provides an interface # for registering things like classes and help topics that # should be associated with that product. Products are # expected to implement a method named 'initialize' in # their __init__.py that takes the ProductContext as an # argument. productObject=App.Product.initializeProduct( product, product_name, package_dir, app) context=ProductContext(productObject, app, product) # Look for an 'initialize' method in the product. If it does # not exist, then this is an old product that has never been # updated. In that case, we will analyze the product and # build up enough information to do initialization manually. initmethod=pgetattr(product, 'initialize', None) if initmethod is not None: initmethod(context) # Support old-style product metadata. Older products may # define attributes to name their permissions, meta_types, # constructors, etc. permissions={} new_permissions={} if pgetattr(product, '__ac_permissions__', None) is not None: warn('__init__.py of %s has a long deprecated ' '\'__ac_permissions__\' attribute. ' '\'__ac_permissions__\' will be ignored by ' 'install_product in Zope 2.10. Please use registerClass ' 'instead.' % product.__name__, DeprecationWarning) for p in pgetattr(product, '__ac_permissions__', ()): permission, names, default = ( tuple(p)+('Manager',))[:3] if names: for name in names: permissions[name]=permission elif not folder_permissions.has_key(permission): new_permissions[permission]=() if pgetattr(product, 'meta_types', None) is not None: warn('__init__.py of %s has a long deprecated \'meta_types\' ' 'attribute. \'meta_types\' will be ignored by ' 'install_product in Zope 2.10. Please use registerClass ' 'instead.' % product.__name__, DeprecationWarning) for meta_type in pgetattr(product, 'meta_types', ()): # Modern product initialization via a ProductContext # adds 'product' and 'permission' keys to the meta_type # mapping. We have to add these here for old products. pname=permissions.get(meta_type['action'], None) if pname is not None: meta_type['permission']=pname meta_type['product']=productObject.id meta_type['visibility'] = 'Global' meta_types.append(meta_type) if pgetattr(product, 'methods', None) is not None: warn('__init__.py of %s has a long deprecated \'methods\' ' 'attribute. \'methods\' will be ignored by ' 'install_product in Zope 2.10. Please use registerClass ' 'instead.' % product.__name__, DeprecationWarning) for name,method in pgetattr( product, 'methods', {}).items(): if not hasattr(Folder.Folder, name): setattr(Folder.Folder, name, method) if name[-9:]!='__roles__': # not Just setting roles if (permissions.has_key(name) and not folder_permissions.has_key( permissions[name])): permission=permissions[name] if new_permissions.has_key(permission): new_permissions[permission].append(name) else: new_permissions[permission]=[name] if new_permissions: new_permissions=new_permissions.items() for permission, names in new_permissions: folder_permissions[permission]=names new_permissions.sort() Folder.Folder.__ac_permissions__=tuple( list(Folder.Folder.__ac_permissions__)+new_permissions) if not doInstall(): transaction.abort() else: transaction.get().note('Installed product '+product_name) transaction.commit() except: if log_exc: LOG.error('Couldn\'t install %s' % product_name, exc_info=sys.exc_info()) transaction.abort() if raise_exc: raise | 2,410 |
def save(self, object, pers_save = 0): memo = self.memo | def save(self, object, pers_save = 0): memo = self.memo | 2,411 |
def save(self, object, pers_save = 0): memo = self.memo | def save(self, object, pers_save = 0): memo = self.memo | 2,412 |
def load_float(self): self.append(string.atof(self.readline()[:-1])) | def load_float(self): self.append(string.atof(self.readline()[:-1])) | 2,413 |
def html_quote(s): """ Convert characters that have special meaning in HTML to HTML character entities. See Also "Python 'cgi' module':http://www.python.org/doc/current/lib/Functions_in_cgi_module.html 'escape' function. """ | def html_quote(s): """ Convert characters that have special meaning in HTML to HTML character entities. See Also "Python 'cgi' module":http://www.python.org/doc/current/lib/Functions_in_cgi_module.html 'escape' function. """ | 2,414 |
def _er(self,data,title,SUBMIT,dtpref_cols,dtpref_rows,REQUEST): dr,dc = self._size_changes[SUBMIT] rows=max(1,int(dtpref_rows)+dr) cols=max(40,int(dtpref_cols)+dc) e=(DateTime('GMT') + 365).rfc822() resp=REQUEST['RESPONSE'] resp.setCookie('dtpref_rows',str(rows),path='/',expires=e) resp.setCookie('dtpref_cols',str(cols),path='/',expires=e) return self.manage_main( self,REQUEST,title=title,__str__=self.quotedHTML(data), dtpref_cols=cols,dtpref_rows=rows) | def _er(self,data,title,SUBMIT,dtpref_cols,dtpref_rows,REQUEST): dr,dc = self._size_changes[SUBMIT] rows=max(1,int(dtpref_rows)+dr) cols=max(35,int(dtpref_cols)+dc) e=(DateTime('GMT') + 365).rfc822() resp=REQUEST['RESPONSE'] resp.setCookie('dtpref_rows',str(rows),path='/',expires=e) resp.setCookie('dtpref_cols',str(cols),path='/',expires=e) return self.manage_main( self,REQUEST,title=title,__str__=self.quotedHTML(data), dtpref_cols=cols,dtpref_rows=rows) | 2,415 |
def manage_edit(self,data,title,SUBMIT='Change',dtpref_cols='50', dtpref_rows='20',REQUEST=None): """ Replaces a Documents contents with Data, Title with Title. | def manage_edit(self,data,title,SUBMIT='Change',dtpref_cols='70', dtpref_rows='20',REQUEST=None): """ Replaces a Documents contents with Data, Title with Title. | 2,416 |
def __nonzero__(self): return 0 | def __nonzero__(self): return 0 | 2,417 |
def evaluate(self, expression, isinstance=isinstance, StringType=StringType): if isinstance(expression, StringType): expression = self._engine.compile(expression) try: v = expression(self) if isinstance(v, Exception): if isinstance(v, TALESError): raise v, None, v.takeTraceback() raise v except TALESError, err: err.setPosition(self.position) raise err, None, sys.exc_info()[2] except self._nocatch: raise except: raise TALESError, (`expression`, sys.exc_info(), self.position), sys.exc_info()[2] else: return v | def evaluate(self, expression, isinstance=isinstance, StringType=StringType): if isinstance(expression, StringType): expression = self._engine.compile(expression) try: v = expression(self) except TALESError, err: err.setPosition(self.position) raise err, None, sys.exc_info()[2] except self._nocatch: raise except: raise TALESError, (`expression`, sys.exc_info(), self.position), sys.exc_info()[2] else: return v | 2,418 |
def severity_string(severity, mapping={ -100: 'BLATHER', 0: 'INFO', 100: 'PROBLEM', 200: 'ERROR', 300: 'PANIC', }): """Convert a severity code to a string """ s=int(severity) if mapping.has_key(s): s=mapping[s] else: s='' return "%s(%s)" % (s, severity) | def severity_string(severity, mapping={ -100: 'BLATHER', 0: 'INFO', 100: 'PROBLEM', 200: 'ERROR', 300: 'PANIC', }): """Convert a severity code to a string """ s=int(severity) if mapping.has_key(s): s=mapping[s] else: s='' return "%s(%s)" % (s, severity) | 2,419 |
def stupid_log_write(subsystem, severity, summary, detail, error): if severity < 0: return global _stupid_dest if _stupid_dest is None: import os if os.environ.has_key('STUPID_LOG_FILE'): f=os.environ['STUPID_LOG_FILE'] if f: _stupid_dest=open(f,'a') else: import sys _stupid_dest=sys.stderr else: _stupid_dest=_no_stupid_log if _stupid_dest is _no_stupid_log: return _stupid_dest.write( "------\n" "%s %s %s %s\n%s" % (log_time(), severity_string(severity), subsystem, summary, detail, ) ) _stupid_dest.flush() if error: try: _stupid_dest.write(format_exception( error[0], error[1], error[2], trailer='\n', limit=100)) except: _stupid_dest.write("%s: %s\n" % error[:2]) | def stupid_log_write(subsystem, severity, summary, detail, error): global _stupid_dest if _stupid_dest is None: import os if os.environ.has_key('STUPID_LOG_FILE'): f=os.environ['STUPID_LOG_FILE'] if f: _stupid_dest=open(f,'a') else: import sys _stupid_dest=sys.stderr else: _stupid_dest=_no_stupid_log if _stupid_dest is _no_stupid_log: return _stupid_dest.write( "------\n" "%s %s %s %s\n%s" % (log_time(), severity_string(severity), subsystem, summary, detail, ) ) _stupid_dest.flush() if error: try: _stupid_dest.write(format_exception( error[0], error[1], error[2], trailer='\n', limit=100)) except: _stupid_dest.write("%s: %s\n" % error[:2]) | 2,420 |
def setRoles(self, roles): | def setRoles(self, roles): | 2,421 |
def setRoles(self, roles): | def setRoles(self, roles): | 2,422 |
def setRoles(self, roles): | def setRoles(self, roles): | 2,423 |
def __call__(self, *args): return Inst(self, args) | def __call__(self, *args): return Inst(self, args) | 2,424 |
def __setstate__(self, state): self._state=state | def __setstate__(self, state): self._state=state | 2,425 |
def save_inst(self, object): d = id(object) cls = object.__class__ | def save_inst(self, object): d = id(object) cls = object.__class__ | 2,426 |
def save_inst(self, object): d = id(object) cls = object.__class__ | def save_inst(self, object): d = id(object) cls = object.__class__ | 2,427 |
def save_inst(self, object): d = id(object) cls = object.__class__ | def save_inst(self, object): d = id(object) cls = object.__class__ | 2,428 |
def query(self,REQUEST,RESPONSE): | def query(self,REQUEST,RESPONSE): | 2,429 |
def test(self, *args): l=len(args) for i in range(1, l, 2): if args[i-1]: return args[i] if l%2: return args[-1] | def test(self, *args): l=len(args) for i in range(1, l, 2): if args[i-1]: return args[i] if l%2: return args[-1] | 2,430 |
def validate(self,request,auth='',roles=None): | def validate(self,request,auth='',roles=None): | 2,431 |
def timeTime(): """ | deftimeTime():""" | 2,432 |
def toZone(z): """ | deftoZone(z):""" | 2,433 |
def isFuture(): """ | defisFuture():""" | 2,434 |
def isPast(): """ | defisPast():""" | 2,435 |
def isCurrentYear(): """ | defisCurrentYear():""" | 2,436 |
def isCurrentMonth(): """ | defisCurrentMonth():""" | 2,437 |
def isCurrentDay(): """ | defisCurrentDay():""" | 2,438 |
def isCurrentHour(): """ | defisCurrentHour():""" | 2,439 |
def isCurrentMinute(): """ | defisCurrentMinute():""" | 2,440 |
def earliestTime(): """ | defearliestTime():""" | 2,441 |
def earliestTime(): """ | def earliestTime(): """ | 2,442 |
def latestTime(): """ | deflatestTime():""" | 2,443 |
def latestTime(): """ | def latestTime(): """ | 2,444 |
def greaterThan(self,t): """ | defgreaterThan(self,t):""" | 2,445 |
def greaterThanEqualTo(self,t): """ | defgreaterThanEqualTo(self,t):""" | 2,446 |
def equalTo(self,t): """ | defequalTo(self,t):""" | 2,447 |
def notEqualTo(self,t): """ | defnotEqualTo(self,t):""" | 2,448 |
def lessThan(self,t): """ | deflessThan(self,t):""" | 2,449 |
def lessThanEqualTo(self,t): """ | deflessThanEqualTo(self,t):""" | 2,450 |
def isLeapYear(): """ | defisLeapYear():""" | 2,451 |
def isLeapYear(): """ | def isLeapYear(): """ | 2,452 |
def dayOfYear(): """ | defdayOfYear():""" | 2,453 |
def parts(): """ | defparts():""" | 2,454 |
def timezone(): """ | deftimezone():""" | 2,455 |
def year(): """ | defyear():""" | 2,456 |
def year(): """ | def year(): """ | 2,457 |
def month(): """ | defmonth():""" | 2,458 |
def Month(): """ | defMonth():""" | 2,459 |
def aMonth(): """ | defaMonth():""" | 2,460 |
def Mon(): """ | defMon():""" | 2,461 |
def pMonth(): """ | defpMonth():""" | 2,462 |
def Mon_(): """ | defMon_():""" | 2,463 |
def day(): """ | defday():""" | 2,464 |
def Day(): """ | defDay():""" | 2,465 |
def DayOfWeek(): """ | defDayOfWeek():""" | 2,466 |
def aDay(): """ | defaDay():""" | 2,467 |
def aDay(): """ | def aDay(): """ | 2,468 |
def pDay(): """ | defpDay():""" | 2,469 |
def pDay(): """ | def pDay(): """ | 2,470 |
def Day_(): """ | defDay_():""" | 2,471 |
def Day_(): """ | def Day_(): """ | 2,472 |
def dow(): """ | defdow():""" | 2,473 |
def dow(): """ | def dow(): """ | 2,474 |
def dow_1(): """ | defdow_1():""" | 2,475 |
def h_12(): """ | defh_12():""" | 2,476 |
def h_24(): """ | defh_24():""" | 2,477 |
def ampm(): """ | defampm():""" | 2,478 |
def hour(): """ | defhour():""" | 2,479 |
def minute(): """ | defminute():""" | 2,480 |
def second(): """ | defsecond():""" | 2,481 |
def millis(): """ | defmillis():""" | 2,482 |
def Date(): """ | defDate():""" | 2,483 |
def Time(): """ | defTime():""" | 2,484 |
def TimeMinutes(): """ | defTimeMinutes():""" | 2,485 |
def AMPM(): """ | defAMPM():""" | 2,486 |
def AMPMMinutes(): """ | defAMPMMinutes():""" | 2,487 |
def PreciseTime(): """ | defPreciseTime():""" | 2,488 |
def PreciseAMPM(): """Return the time string for the object.""" | def PreciseAMPM(): """Return the time string for the object.""" | 2,489 |
def yy(): """Return calendar year as a 2 digit string""" | def yy(): """Return calendar year as a 2 digit string""" | 2,490 |
def mm(): """Return month as a 2 digit string""" | def mm(): """Return month as a 2 digit string""" | 2,491 |
def dd(): """Return day as a 2 digit string""" | def dd(): """Return day as a 2 digit string""" | 2,492 |
def rfc822(): """Return the date in RFC 822 format""" | def rfc822(): """Return the date in RFC 822 format""" | 2,493 |
def fCommon(): """Return a string representing the object\'s value in the format: March 1, 1997 1:45 pm""" | def fCommon(): """Return a string representing the object\'s value in the format: March 1, 1997 1:45 pm""" | 2,494 |
def fCommonZ(): """Return a string representing the object\'s value in the format: March 1, 1997 1:45 pm US/Eastern""" | def fCommonZ(): """Return a string representing the object\'s value in the format: March 1, 1997 1:45 pm US/Eastern""" | 2,495 |
def aCommon(): """Return a string representing the object\'s value in the format: Mar 1, 1997 1:45 pm""" | def aCommon(): """Return a string representing the object\'s value in the format: Mar 1, 1997 1:45 pm""" | 2,496 |
def aCommonZ(): """Return a string representing the object\'s value in the format: Mar 1, 1997 1:45 pm US/Eastern""" | def aCommonZ(): """Return a string representing the object\'s value in the format: Mar 1, 1997 1:45 pm US/Eastern""" | 2,497 |
def pCommon(): """Return a string representing the object\'s value in the format: Mar. 1, 1997 1:45 pm""" | def pCommon(): """Return a string representing the object\'s value in the format: Mar. 1, 1997 1:45 pm""" | 2,498 |
def pCommonZ(): """Return a string representing the object\'s value in the format: Mar. 1, 1997 1:45 pm US/Eastern""" | def pCommonZ(): """Return a string representing the object\'s value in the format: Mar. 1, 1997 1:45 pm US/Eastern""" | 2,499 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.