hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
8af258fff855fbffe59a98e50b1ea6cc2244dec3
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -4,14 +4,8 @@ var define = require('define-property'); var isObject = require('isobject'); class Node { - constructor(pos, val, type) { + constructor(val, type) { this.define('isNode', true); - if (typeof pos !==...
simplify node by removing `pos`
here-be_snapdragon-node
train
e463b5b0e9f4b57f377e7f97202f343a8029e3de
diff --git a/src/Surfnet/MessageBirdApiClientBundle/DependencyInjection/Configuration.php b/src/Surfnet/MessageBirdApiClientBundle/DependencyInjection/Configuration.php index <HASH>..<HASH> 100644 --- a/src/Surfnet/MessageBirdApiClientBundle/DependencyInjection/Configuration.php +++ b/src/Surfnet/MessageBirdApiClientBu...
Ignore code coverage for bundle Configuration.
SURFnet_messagebird-api-client-bundle
train
3c4914c60927e1a9b85777491e52bb7e418cf87a
diff --git a/trolly/member.py b/trolly/member.py index <HASH>..<HASH> 100644 --- a/trolly/member.py +++ b/trolly/member.py @@ -53,6 +53,17 @@ class Member(TrelloObject): return cards_list + def create_new_board(self, query_params=None): + """ + Create a new board. name is required in query...
Added method for creating a new board
its-rigs_Trolly
train
009eae949d464075ce2bba04ec4184dc83c61a57
diff --git a/init.php b/init.php index <HASH>..<HASH> 100644 --- a/init.php +++ b/init.php @@ -135,7 +135,7 @@ if (!function_exists('s')) { function s() { if (!Kint::$enabled_mode) { - return ''; + return 0; } $stash = Kint::settings(); diff --git a/src/Kint....
Kint: return int so the modifiers don't blow up The string returned in kint 1 doesn't work with +, - modifiers in PHP7. And the false returned by one of my patches doesn't work with the ~ modifier. int 0 seems to work with all (@, !, ~, -, +) modifiers on all supported versions so we'll use that instead
kint-php_kint
train
c3574c66cad026b03693c0e66846d10d6b7c5d98
diff --git a/CHANGES.rst b/CHANGES.rst index <HASH>..<HASH> 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -9,6 +9,8 @@ (`Issue #97 <https://github.com/sqlalchemy-redshift/sqlalchemy-redshift/pull/97>`_) - Performance improvement for reflection by caching table constraint info (`Issue #101 <https://github.com/sql...
Support BZIP2 compression in COPY. Fixes #<I>
sqlalchemy-redshift_sqlalchemy-redshift
train
8e8c51d0a8c5887602523ee5d6c5c43205d24122
diff --git a/osmcha/changeset.py b/osmcha/changeset.py index <HASH>..<HASH> 100644 --- a/osmcha/changeset.py +++ b/osmcha/changeset.py @@ -189,6 +189,8 @@ class Analyse(object): self.suspicion_reasons.append('suspect_word') break + self.suspicion_reasons = list(set(sel...
avoid duplicated reasons in 'suspicion_reasons' list
willemarcel_osmcha
train
c836a1b3851c118a3fb937afdeb7c94d6bb2c86f
diff --git a/save.go b/save.go index <HASH>..<HASH> 100644 --- a/save.go +++ b/save.go @@ -224,7 +224,7 @@ func filterPackages(output []byte, exclude map[string]struct{}) map[string]struc // Keep edits to vcs.go separate from the stock version. var headCmds = map[string]string{ - "git": "rev-parse head", // 2bebeb...
head -> HEAD for linux
robfig_glock
train
bea9e46276e41ec1e2abea75f751a1234fb29470
diff --git a/src/ast/nodes/AssignmentPattern.js b/src/ast/nodes/AssignmentPattern.js index <HASH>..<HASH> 100644 --- a/src/ast/nodes/AssignmentPattern.js +++ b/src/ast/nodes/AssignmentPattern.js @@ -1,6 +1,11 @@ import Node from '../Node.js'; export default class AssignmentPattern extends Node { + bind () { + supe...
Even though it currently has no effect, make sure that for assignment patterns, both the right side as well as any initial assignment are assigned to the left side.
rollup_rollup
train
f75ebaf1c11fed59f75180fd3e1b9eb94b93d6e2
diff --git a/src/sprout.js b/src/sprout.js index <HASH>..<HASH> 100644 --- a/src/sprout.js +++ b/src/sprout.js @@ -11,8 +11,8 @@ var get = require('./get'), util = require('./util'); function multiGet(obj, path, orValue) { - if (typeof path === 'string' || typeof path === 'number') return get(obj, path, orValu...
Bring multis inline with each other
herrstucki_sprout
train
0b9cb03c7df3cac99be8f7406ffda97467f49e82
diff --git a/Rakefile b/Rakefile index <HASH>..<HASH> 100644 --- a/Rakefile +++ b/Rakefile @@ -1,3 +1,6 @@ +require "pathname" +abspath = Pathname.new(File.dirname(__FILE__)).expand_path +relpath = abspath.relative_path_from(Pathname.pwd) begin require "rubygems" @@ -17,16 +20,19 @@ begin require "rspec/core/r...
Changed load path setup and various things to support running the test suite with the Rails environment loaded (to check for conflicts) I confirmed that Rails did not cause any Stupidedi specs to fail, but haven't checked the other direction (less worrisome).
irobayna_stupidedi
train
5922643cf7c10ac6145bca7062f422f23cdfedb2
diff --git a/library/src/main/java/fr/castorflex/android/smoothprogressbar/SmoothProgressDrawable.java b/library/src/main/java/fr/castorflex/android/smoothprogressbar/SmoothProgressDrawable.java index <HASH>..<HASH> 100644 --- a/library/src/main/java/fr/castorflex/android/smoothprogressbar/SmoothProgressDrawable.java +...
Fixed max offset making the bar to flicker a bit.
castorflex_SmoothProgressBar
train
d832e1fc6eb86caeccb76d52aa66c3c07c9fc5fa
diff --git a/flask_io/io.py b/flask_io/io.py index <HASH>..<HASH> 100644 --- a/flask_io/io.py +++ b/flask_io/io.py @@ -12,7 +12,7 @@ from .negotiation import DefaultContentNegotiation from .parsers import JSONParser from .renderers import JSONRenderer from .tracing import Tracer -from .utils import errors_to_dict, g...
HTTP exceptions were not being reraised by Flask
viniciuschiele_flask-io
train
614bacb5171c8205867b755645ccf3fd3e2a54fb
diff --git a/src/javacTransformer/lombok/ast/javac/JcTreePrinter.java b/src/javacTransformer/lombok/ast/javac/JcTreePrinter.java index <HASH>..<HASH> 100644 --- a/src/javacTransformer/lombok/ast/javac/JcTreePrinter.java +++ b/src/javacTransformer/lombok/ast/javac/JcTreePrinter.java @@ -21,6 +21,7 @@ */ package lombo...
Added a convenience main method to JcTreePrinter so you can quickly print the AST structure as generated by javac on any source file from the command line.
rzwitserloot_lombok.ast
train
17814d4aae51a58fa365b34531d410ec7efdef68
diff --git a/psamm/commands/tmfa.py b/psamm/commands/tmfa.py index <HASH>..<HASH> 100644 --- a/psamm/commands/tmfa.py +++ b/psamm/commands/tmfa.py @@ -542,8 +542,17 @@ def make_irreversible(mm, exclude_list, lump_rxn_dir, all_reversible): lumped_rxns = [] new_lump_rxn_dict = {} for rxn in mm.reactions: + + upp...
fixed bug with setting limits on irreversible reactions
zhanglab_psamm
train
a24dc6e6301e28c8b333524b958846b15d6353ee
diff --git a/src/parser/statement.js b/src/parser/statement.js index <HASH>..<HASH> 100644 --- a/src/parser/statement.js +++ b/src/parser/statement.js @@ -172,34 +172,38 @@ export default class StatementParser extends ExpressionParser { } parseDecorator(): N.Decorator { - if (!this.hasPlugin("decorators")) {...
Let decorator stage 2 parsing be under a new plugin name Parse stage 0 decorators when "decorators" plugin is active and parse stage 2 decorators when "decorators-stage-2" plugin is active
babel_babylon
train
a8c6a6ae485e7a5062febfe588581eb7d45fd7f3
diff --git a/Kwf/Assets/Package.php b/Kwf/Assets/Package.php index <HASH>..<HASH> 100644 --- a/Kwf/Assets/Package.php +++ b/Kwf/Assets/Package.php @@ -255,8 +255,11 @@ class Kwf_Assets_Package $data->sourcesContent = $data->sources; //browser-pack needs sourcesContent, else it would ignore input source...
don't add semicolon after sourcemap comment, instead add it after the js code itself
koala-framework_koala-framework
train
07d90238c68840444eb147516b3ffc3441bfc410
diff --git a/mod/quiz/attemptlib.php b/mod/quiz/attemptlib.php index <HASH>..<HASH> 100644 --- a/mod/quiz/attemptlib.php +++ b/mod/quiz/attemptlib.php @@ -1092,6 +1092,12 @@ class quiz_attempt { * @return bool true if the navigation should be allowed. */ public function can_navigate_to($slot) { + ...
MDL-<I> quiz: don't show useless links on overdue attempt summary page
moodle_moodle
train
2f575e0845865356e5d659d2c5d2a7a7b23d62a5
diff --git a/src/Card/CardTitle.js b/src/Card/CardTitle.js index <HASH>..<HASH> 100644 --- a/src/Card/CardTitle.js +++ b/src/Card/CardTitle.js @@ -63,21 +63,20 @@ export const componentTheme = (baseTheme: Object) => ({ const styles = { avatar: ({ subtitle, theme: baseTheme }) => { const theme = componentTheme(...
feat(card): Update CardTitle `avatar` prop to accept Avatar BREAKING CHANGE: `avatar` prop only accepts Avatar component rather than a raw `img`
mineral-ui_mineral-ui
train
26af341b2b7ae70ef516e019e850a402e4b2cd0a
diff --git a/udata/core/site/metrics.py b/udata/core/site/metrics.py index <HASH>..<HASH> 100644 --- a/udata/core/site/metrics.py +++ b/udata/core/site/metrics.py @@ -140,7 +140,7 @@ class MaxReuseDatasetsMetric(SiteMetric): def get_value(self): reuse = (Reuse.objects(metrics__datasets__gt=0).visible() ...
Display the correct number of followers in the reuses list (fixes #<I>) (#<I>)
opendatateam_udata
train
6118cde76e6914c6bbf2023ba3350b939ac2c01c
diff --git a/nptdms/tdms.py b/nptdms/tdms.py index <HASH>..<HASH> 100644 --- a/nptdms/tdms.py +++ b/nptdms/tdms.py @@ -8,7 +8,7 @@ import warnings import numpy as np from nptdms import scaling, types -from nptdms.utils import Timer, OrderedDict +from nptdms.utils import Timer, OrderedDict, cached_property from npt...
Cache more properties on TdmsChannel
adamreeve_npTDMS
train
8e170d2f98580586b0e061ea30336cd42a952513
diff --git a/api/src/main/java/com/capitalone/dashboard/service/PipelineServiceImpl.java b/api/src/main/java/com/capitalone/dashboard/service/PipelineServiceImpl.java index <HASH>..<HASH> 100644 --- a/api/src/main/java/com/capitalone/dashboard/service/PipelineServiceImpl.java +++ b/api/src/main/java/com/capitalone/dash...
Had to change the timestamp has to use a string for the environment. this will eventually be removed since we don't need a hash for the stored pipeline - just for the response.
Hygieia_Hygieia
train
cb6c5c0c4a761f0175a605a871461ef1cf9ff63f
diff --git a/src/drawer.js b/src/drawer.js index <HASH>..<HASH> 100644 --- a/src/drawer.js +++ b/src/drawer.js @@ -55,7 +55,7 @@ WaveSurfer.Drawer = { } }); - this.wrapper.addEventListener('mousedown', function (e) { + this.wrapper.addEventListener('mouseup', function (e) { ...
Bug fix: Drawer mouseup event was raising mousedown
katspaugh_wavesurfer.js
train
e6c3de5999cf59e691fd4b4f88955aba38246b67
diff --git a/sigal/gallery.py b/sigal/gallery.py index <HASH>..<HASH> 100644 --- a/sigal/gallery.py +++ b/sigal/gallery.py @@ -44,6 +44,16 @@ class PathsDb(object): self.ext_list = ext_list self.logger = logging.getLogger(__name__) + def get_subdirs(self, path): + """Return the list of all...
Find the thumbnail in all the sub-directories.
saimn_sigal
train
3f8c4e77b7533e887106ce905581b8ada2dc77de
diff --git a/lib/mongomodel/document/validations/uniqueness.rb b/lib/mongomodel/document/validations/uniqueness.rb index <HASH>..<HASH> 100644 --- a/lib/mongomodel/document/validations/uniqueness.rb +++ b/lib/mongomodel/document/validations/uniqueness.rb @@ -5,25 +5,14 @@ module MongoModel module Validations ...
Silence and protect against deprecation warnings
spohlenz_mongomodel
train
db127c73a283d315694ae0584e11962ea794c9e1
diff --git a/modules/realvuAnalyticsAdapter.js b/modules/realvuAnalyticsAdapter.js index <HASH>..<HASH> 100644 --- a/modules/realvuAnalyticsAdapter.js +++ b/modules/realvuAnalyticsAdapter.js @@ -42,7 +42,7 @@ export let lib = { init: function () { let z = this; let u = navigator.userAgent; - z.device = ...
RealVu Analytics Adapter: remove "tablet" from device types (#<I>) * Remove _ps in _f=conf request * Replace " * realvuAnalyticsAdapter_spec updated * Update realvuAnalyticsAdapter.js
prebid_Prebid.js
train
14f57f56b34894c19224d20d3b92da2d357d6a94
diff --git a/sphinxcontrib/openapi/directive.py b/sphinxcontrib/openapi/directive.py index <HASH>..<HASH> 100644 --- a/sphinxcontrib/openapi/directive.py +++ b/sphinxcontrib/openapi/directive.py @@ -8,27 +8,13 @@ :license: BSD, see LICENSE for details. """ -import collections import functools from docutils....
Fix loading of $ref in other YAML files Additionally, this commit should also fix a problem with referend objects containing other references.
sphinx-contrib_openapi
train
47974a2292f1cb41f518e921b85b0b8b0dbcb889
diff --git a/src/ApacheMimetypeHelper.php b/src/ApacheMimetypeHelper.php index <HASH>..<HASH> 100644 --- a/src/ApacheMimetypeHelper.php +++ b/src/ApacheMimetypeHelper.php @@ -91,7 +91,6 @@ class ApacheMimetypeHelper implements MimetypeHelper 'pbm' => 'image/x-portable-bitmap', 'pdf' => 'applic...
Moved non-apache mime types to the bottom
php-http_multipart-stream-builder
train
872eea998680acb54ac58e53af57984eb71a6273
diff --git a/activiti-cycle/src/main/java/org/activiti/cycle/impl/connector/signavio/SignavioConnector.java b/activiti-cycle/src/main/java/org/activiti/cycle/impl/connector/signavio/SignavioConnector.java index <HASH>..<HASH> 100644 --- a/activiti-cycle/src/main/java/org/activiti/cycle/impl/connector/signavio/SignavioC...
Changed usage of deprecated methods to correct ones.
camunda_camunda-bpm-platform
train
40f5139caf96e5769a11c0e192762396896a7f5c
diff --git a/devices/philips.js b/devices/philips.js index <HASH>..<HASH> 100644 --- a/devices/philips.js +++ b/devices/philips.js @@ -2078,7 +2078,7 @@ module.exports = [ extend: hueExtend.light_onoff_brightness_colortemp_color(), }, { - zigbeeModel: ['LCS001'], + zigbeeModel: ['LCS001...
Add <I>P7 to <I>P7 (#<I>)
Koenkk_zigbee-shepherd-converters
train
fb0dc22da9ad3c9afdf42e375e9eb78cbb3c88b0
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -31,7 +31,8 @@ setup( ], install_requires=[ 'requests>=2.3.0', - 'six>=1.7.3' + 'six>=1.7.3', + 'PyCrypto>=2.6.1' ], tests_require=[ 'mock>=1.0.1',
added pycrypto to requirements
pedroburon_tbk
train
a94d7ea18e8766eb9f49989140ac21f41ecc2d44
diff --git a/Command/SwarrotCommand.php b/Command/SwarrotCommand.php index <HASH>..<HASH> 100644 --- a/Command/SwarrotCommand.php +++ b/Command/SwarrotCommand.php @@ -121,7 +121,7 @@ class SwarrotCommand extends ContainerAwareCommand $processor = $stack->resolve($this->processor); $optionsResolver =...
update deprecated call on optionsResolver
swarrot_SwarrotBundle
train
e8aa215cb6e142159e16d6754644e4858aad8e2e
diff --git a/create_app.py b/create_app.py index <HASH>..<HASH> 100644 --- a/create_app.py +++ b/create_app.py @@ -108,6 +108,16 @@ system_pylint = find_program('pylint') pylint_dest = resources + osp.sep + 'pylint' shutil.copy2(system_pylint, pylint_dest) +# Change pylint interpreter to use the internal python app...
Mac app: Change pylint interpreter path to the one it'll have when the app is installed in Applications - The previous solution (changing the interpreter on the fly according to the app's location) was not working when the user doesn't have rights to write in Applications. - However, we try to change to path if the ap...
spyder-ide_spyder
train
e20e71509396ccabffd6ef28fd1205a371c1e644
diff --git a/data-scripts/build_frequency_lists.py b/data-scripts/build_frequency_lists.py index <HASH>..<HASH> 100644 --- a/data-scripts/build_frequency_lists.py +++ b/data-scripts/build_frequency_lists.py @@ -171,7 +171,7 @@ def main(): with open('../frequency_lists.coffee', 'w') as f: # words are all ascii at t...
naming: update for data-scripts
dropbox_zxcvbn
train
4a7d93a9dd6a78648909a92c9ed2ede1fb97dad9
diff --git a/src/Commands/CreatePackage.php b/src/Commands/CreatePackage.php index <HASH>..<HASH> 100644 --- a/src/Commands/CreatePackage.php +++ b/src/Commands/CreatePackage.php @@ -5,6 +5,7 @@ use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Input\InputArgument; use Illuminate\Cont...
Update to Laravel <I>
neonbug_meexo-common
train
32ad9c5c2222f2dd9891129a7e7fc36361f614da
diff --git a/f5/bigip/ltm/test/test_pool.py b/f5/bigip/ltm/test/test_pool.py index <HASH>..<HASH> 100644 --- a/f5/bigip/ltm/test/test_pool.py +++ b/f5/bigip/ltm/test/test_pool.py @@ -34,7 +34,7 @@ DATA_DIR = os.path.dirname(__file__) JSON_FILE = os.path.join(DATA_DIR, 'pool.json') -def itest_get_description(): +de...
Uncomment incorrectly commented unittests.
F5Networks_f5-common-python
train
589380ac92b61dc277e35dd7bcfb00ca9b449fd5
diff --git a/hawtio-core/src/main/java/io/hawt/util/MBeanSupport.java b/hawtio-core/src/main/java/io/hawt/util/MBeanSupport.java index <HASH>..<HASH> 100644 --- a/hawtio-core/src/main/java/io/hawt/util/MBeanSupport.java +++ b/hawtio-core/src/main/java/io/hawt/util/MBeanSupport.java @@ -50,9 +50,11 @@ public abstract cl...
improves#<I>; lets just warn if another deployment unit has already registered an mbean
hawtio_hawtio
train
8175f280e343ca3561d2f1d8d2a434dfe01911b4
diff --git a/nni/retiarii/utils.py b/nni/retiarii/utils.py index <HASH>..<HASH> 100644 --- a/nni/retiarii/utils.py +++ b/nni/retiarii/utils.py @@ -2,6 +2,7 @@ import inspect import warnings from collections import defaultdict from typing import Any +from pathlib import Path def import_(target: str, allow_none: ...
Fix 'NoneType' Error on jupyter notebooks (#<I>)
Microsoft_nni
train
b537129f48432a89c1620c57c704b8025a16be78
diff --git a/elastics-client/lib/elastics/result/bulk.rb b/elastics-client/lib/elastics/result/bulk.rb index <HASH>..<HASH> 100644 --- a/elastics-client/lib/elastics/result/bulk.rb +++ b/elastics-client/lib/elastics/result/bulk.rb @@ -8,11 +8,12 @@ module Elastics end def failed - self['items'].r...
fix for bulk feedback for actions different from index
elastics_elastics
train
d4bb664713bfa1bd5a1c1342a2c441f2d248d80e
diff --git a/lib/podio/active_podio/base.rb b/lib/podio/active_podio/base.rb index <HASH>..<HASH> 100644 --- a/lib/podio/active_podio/base.rb +++ b/lib/podio/active_podio/base.rb @@ -89,12 +89,14 @@ module ActivePodio end unless options[:nested] == false - self._associations.each do |name, ...
In as_json checking if the associations support the each iterator before iterating on nested models.
podio_podio-rb
train
06180742f9ae9551a072e507d017e7c19d833bbf
diff --git a/geomdl/Abstract.py b/geomdl/Abstract.py index <HASH>..<HASH> 100644 --- a/geomdl/Abstract.py +++ b/geomdl/Abstract.py @@ -36,7 +36,7 @@ class Curve(six.with_metaclass(abc.ABCMeta, object)): __repr__ = __str__ - def __call__(self, degree, ctrlpts, knotvector, **kwargs): + def __call__(self, d...
Update __call__ method of the Curve class
orbingol_NURBS-Python
train
bf2348d17e9d47402071244b17fb0d6b2f50f330
diff --git a/components/src/main/resources/META-INF/resources/butterfaces-js/butterfaces-autocomplete.jquery.js b/components/src/main/resources/META-INF/resources/butterfaces-js/butterfaces-autocomplete.jquery.js index <HASH>..<HASH> 100644 --- a/components/src/main/resources/META-INF/resources/butterfaces-js/butterfac...
BUT-<I> migrate JS plugin to base class structure
ButterFaces_ButterFaces
train
d8ca0b37f7ab0feb6839e2b5f2f827682eaf56d1
diff --git a/lib/excon/headers.rb b/lib/excon/headers.rb index <HASH>..<HASH> 100644 --- a/lib/excon/headers.rb +++ b/lib/excon/headers.rb @@ -1,9 +1,11 @@ module Excon class Headers < Hash + SENTINEL = {} + alias_method :raw_writer, :[]= alias_method :raw_reader, :[] - alias_method :raw_assoc, :a...
Only override Hash#assoc if native Hashes support it.
excon_excon
train
083703d48f2430d05ccc91403b10bc52c268cdfc
diff --git a/.travis.yml b/.travis.yml index <HASH>..<HASH> 100644 --- a/.travis.yml +++ b/.travis.yml @@ -86,9 +86,13 @@ matrix: env: CAPYBARA_FF=true HEADLESS=true addons: firefox: latest + - gemfile: Gemfile + rvm: 2.5.1 + env: W3C=true HEADLESS=true allow_failures: - gemf...
Remove no longer necessary options and add W3C mode tests for chromedriver
teamcapybara_capybara
train
a48650226a9d917a4ea47ff7ae9cda000da4105c
diff --git a/presto-main/src/main/java/com/facebook/presto/operator/ScanFilterAndProjectOperator.java b/presto-main/src/main/java/com/facebook/presto/operator/ScanFilterAndProjectOperator.java index <HASH>..<HASH> 100644 --- a/presto-main/src/main/java/com/facebook/presto/operator/ScanFilterAndProjectOperator.java +++ ...
Reduce LazyBlock copy / wrapping in ScanFilterAndProjectOperator Previously, LazyBlock instances that were already loaded would still be wrapped in a new LazyBlock that reported statistics on load. Now, only not-yet-loaded LazyBlock instances will require that wrapping. Additionally, when no changes to the Page blocks...
prestodb_presto
train
db34b46532c8d2ea234814abdb7f206039a739fc
diff --git a/src/FiniteStateMachine.php b/src/FiniteStateMachine.php index <HASH>..<HASH> 100644 --- a/src/FiniteStateMachine.php +++ b/src/FiniteStateMachine.php @@ -106,6 +106,10 @@ class FiniteStateMachine public function sleep() { + if ($this->isSleep()) { + throw new Exception('Sleep ...
#1: Fsm_SleepTest::test_Sleep_CallsIsSleep()
tourman_fsm
train
628c35528a82929b71b6b7a6e7e849a2118621a2
diff --git a/src/metpy/io/station_data.py b/src/metpy/io/station_data.py index <HASH>..<HASH> 100644 --- a/src/metpy/io/station_data.py +++ b/src/metpy/io/station_data.py @@ -3,6 +3,7 @@ # SPDX-License-Identifier: BSD-3-Clause """Pull out station metadata.""" from collections import ChainMap, namedtuple +from collec...
ENH: Make StationLookup a proper Mapping This allows iteration, membership, etc. directly on the station information rather than needing to use the tables property.
Unidata_MetPy
train
da11a78f544793cf60f983d88aa1c2ddef99d0e1
diff --git a/lib/puppet/file_serving/content.rb b/lib/puppet/file_serving/content.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/file_serving/content.rb +++ b/lib/puppet/file_serving/content.rb @@ -41,6 +41,6 @@ class Puppet::FileServing::Content < Puppet::FileServing::Base end def to_raw - File.new(full_pa...
(#<I>) Serve file content in binary mode Previously, Puppet::FileServing::Content opened files in text mode. Changed to binary mode.
puppetlabs_puppet
train
bf7445500abbd14b24d1487907b1e618d0652a22
diff --git a/config/module.config.php b/config/module.config.php index <HASH>..<HASH> 100644 --- a/config/module.config.php +++ b/config/module.config.php @@ -1,24 +1,30 @@ <?php return [ - 'userAcl' => [ - 'userRoles' => [ - 'guest' => [ - 'privileges' => [ - 'a...
changes made as UthandoUser acl changed
uthando-cms_uthando-file-manager
train
d426580ac78733351ac654902019c6debd00db0d
diff --git a/lib/rfd.rb b/lib/rfd.rb index <HASH>..<HASH> 100644 --- a/lib/rfd.rb +++ b/lib/rfd.rb @@ -168,7 +168,7 @@ module Rfd end # Change the current directory. - def cd(dir, pushd: true) + def cd(dir = '~', pushd: true) dir = load_item expand_path(dir) unless dir.is_a? Item unless ...
cd goes to ~ by default
amatsuda_rfd
train
401aba4ef3119ca0e0bd9cc67cef63c64da2cc18
diff --git a/packages/core-web/src/index.js b/packages/core-web/src/index.js index <HASH>..<HASH> 100644 --- a/packages/core-web/src/index.js +++ b/packages/core-web/src/index.js @@ -91,14 +91,30 @@ function detectAndApplyFixedHeaderStyles() { }; let lastOffset = 0; + let lastHash = window.location.hash; co...
Reduce mobile header hiding sensitivity (#<I>)
MarkBind_markbind
train
297a5c1069d07d47e74e301326a43a59bd1183c8
diff --git a/compliance/run-autobahn-tests.py b/compliance/run-autobahn-tests.py index <HASH>..<HASH> 100644 --- a/compliance/run-autobahn-tests.py +++ b/compliance/run-autobahn-tests.py @@ -90,11 +90,11 @@ def wait_for_listener(port): def coverage(command, coverage_settings): if not coverage_settings["enabled"]:...
Don't use an else clause when it's not necessary.
python-hyper_wsproto
train
265527235412b3bc9f6a750754b22dbf0805f5c3
diff --git a/safe/storage/raster.py b/safe/storage/raster.py index <HASH>..<HASH> 100644 --- a/safe/storage/raster.py +++ b/safe/storage/raster.py @@ -291,7 +291,8 @@ class Raster(Layer): layer_name=layer_name, attribute_name=at...
Exposed tolerances used in get_resolution through to Raster.get_data()
inasafe_inasafe
train
5a7d5329bbc0be8c78644cae248c3119cf25e351
diff --git a/raiden/network/rpc/client.py b/raiden/network/rpc/client.py index <HASH>..<HASH> 100644 --- a/raiden/network/rpc/client.py +++ b/raiden/network/rpc/client.py @@ -153,7 +153,7 @@ def format_data_for_call( def check_node_connection(func): - """ A decorator to reconnect if the connection to the node i...
Add endpoint info in the client connection error
raiden-network_raiden
train
b0926c74ced5ede2a1e66714c7c6c50549f54826
diff --git a/opinel/utils/credentials.py b/opinel/utils/credentials.py index <HASH>..<HASH> 100644 --- a/opinel/utils/credentials.py +++ b/opinel/utils/credentials.py @@ -426,6 +426,9 @@ def read_creds(profile_name, csv_file = None, mfa_serial_arg = None, mfa_code = credentials = read_creds(source_pro...
Issue #<I> : prompt for an MFA code
nccgroup_opinel
train
41041280a1a9e46b2f6c99f000d6760819131529
diff --git a/src/directives/formly-field.js b/src/directives/formly-field.js index <HASH>..<HASH> 100644 --- a/src/directives/formly-field.js +++ b/src/directives/formly-field.js @@ -386,7 +386,7 @@ function formlyField($http, $q, $compile, $templateCache, $interpolate, formlyCo } else { return ...
fix(formly-field): Style issue
formly-js_angular-formly
train
bb44e59e6e3e3c0675f171b14eaa755f9792abea
diff --git a/middleman-core/lib/middleman-core/core_extensions/front_matter.rb b/middleman-core/lib/middleman-core/core_extensions/front_matter.rb index <HASH>..<HASH> 100644 --- a/middleman-core/lib/middleman-core/core_extensions/front_matter.rb +++ b/middleman-core/lib/middleman-core/core_extensions/front_matter.rb @...
Blindly attempt to imrpove encoding situation
middleman_middleman
train
6e9df821bbcef7a80ccf20856f26474cddf3feca
diff --git a/src/Http/Controllers/Controller.php b/src/Http/Controllers/Controller.php index <HASH>..<HASH> 100644 --- a/src/Http/Controllers/Controller.php +++ b/src/Http/Controllers/Controller.php @@ -48,10 +48,6 @@ abstract class Controller extends BaseController foreach ($rows as $row) { $opti...
fix relationship bug (#<I>) * fix relationship bug the relationship row field should be changed after the content is delivered * fix style error * fix style again
the-control-group_voyager
train
a6de250a99a1ca9e17a20f8b5e18f9c67d73e09b
diff --git a/src/phpDocumentor/Application.php b/src/phpDocumentor/Application.php index <HASH>..<HASH> 100644 --- a/src/phpDocumentor/Application.php +++ b/src/phpDocumentor/Application.php @@ -110,7 +110,7 @@ class Application extends Cilex } } - if (extension_loaded('Zend Optimizer+') ...
Corrected condition Fixes #<I> - thank you @fi5er
phpDocumentor_phpDocumentor2
train
5aafaf1114cb00fca4380f5fbeee0f0610b58bec
diff --git a/lxd/storage_volumes_snapshot.go b/lxd/storage_volumes_snapshot.go index <HASH>..<HASH> 100644 --- a/lxd/storage_volumes_snapshot.go +++ b/lxd/storage_volumes_snapshot.go @@ -402,11 +402,6 @@ func storagePoolVolumeSnapshotTypePut(d *Daemon, r *http.Request) response.Respo return response.BadRequest(err) ...
lxd/storage/volume: Snapshot PUT is supposed to be blocking
lxc_lxd
train
2147bda028509bb3838ade7379b1daf7778b985d
diff --git a/chess/pgn.py b/chess/pgn.py index <HASH>..<HASH> 100644 --- a/chess/pgn.py +++ b/chess/pgn.py @@ -387,6 +387,10 @@ class GameNode: return node def eval(self) -> Optional[chess.engine.PovScore]: + """ + Parses the first valid ``[%eval ...]`` annotation in the comment of + ...
Document PGN comment annotations (#<I>)
niklasf_python-chess
train
a4e55e23a00272f0fe07ce924e33650587683fcc
diff --git a/tests/utils.py b/tests/utils.py index <HASH>..<HASH> 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -68,7 +68,7 @@ def check_client_method(): response = Mock() response.status = 200 http.request = Mock(return_value=( - response, json.dumps(returned_object))) + resp...
the response from httplib2 is now bytes, not str
podio_podio-py
train
255dfd76c2afb80005919aaaf879cfa80954a8b1
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -21,6 +21,9 @@ import os import sys sys.path.append(os.path.dirname(os.path.dirname(__file__))) +sys.path.append(os.path.join(os.path.dirname(__file__), '../pyhector')) + +from _version import get_versions ...
Use version from versioneer for sphinx docs
openclimatedata_pyhector
train
112fcf3a84a1bfd8fe1a88120db35551d9b0f19a
diff --git a/app/scripts/pages/index.js b/app/scripts/pages/index.js index <HASH>..<HASH> 100644 --- a/app/scripts/pages/index.js +++ b/app/scripts/pages/index.js @@ -2,3 +2,4 @@ export { default as Login } from './Login.jsx' export { default as EditMobilization } from './EditMobilization.jsx' export { default as Lis...
Add route /mobilizations/:id to the SSR solution
nossas_bonde-client
train
86f40e170fdb6b9807421b9208348717d7571743
diff --git a/lib/better_sqs/configuration.rb b/lib/better_sqs/configuration.rb index <HASH>..<HASH> 100644 --- a/lib/better_sqs/configuration.rb +++ b/lib/better_sqs/configuration.rb @@ -11,14 +11,21 @@ module BetterSqs @sqs_message_deferral_seconds = 60 @aws_access_key_id = ENV["AWS_ACCESS_KEY_ID"] ...
Only configure credentials if they are overridden
Referly_better_sqs
train
95a345cbf23f6f615e4e84bb55b367e2c182ba0c
diff --git a/demos/main.js b/demos/main.js index <HASH>..<HASH> 100644 --- a/demos/main.js +++ b/demos/main.js @@ -103,6 +103,12 @@ Enjoy! config.sources = config.sources || {}; config.sources['osm'] = tile_sources[default_tile_source]; } + }, + error: functi...
debugging for scene error and warning events
tangrams_tangram
train
22e5f278b3677a3def384805e552b558caa26fe8
diff --git a/lib/api_hammer/faraday/outputter.rb b/lib/api_hammer/faraday/outputter.rb index <HASH>..<HASH> 100644 --- a/lib/api_hammer/faraday/outputter.rb +++ b/lib/api_hammer/faraday/outputter.rb @@ -2,7 +2,7 @@ require 'faraday' require 'rack' module ApiHammer - # outputs the response body to the given output ...
support a logger instead of a device in FaradayOutputter
notEthan_api_hammer
train
638541071ef9c87d5ceeae56080b2a8bb7f99704
diff --git a/modules/lifegame/display/curses_visualisation.py b/modules/lifegame/display/curses_visualisation.py index <HASH>..<HASH> 100644 --- a/modules/lifegame/display/curses_visualisation.py +++ b/modules/lifegame/display/curses_visualisation.py @@ -2,7 +2,7 @@ from xyworld.display.object.TextTraceVisualisation im...
fix tests: forgottent init param in Terminal
buxx_synergine
train
e205ca40f1476f8dce943693b85b4cce979fd78e
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -35,7 +35,7 @@ module.exports = { if (err) { return callback(err) } conn.getPeerInfo((err, peerInfo) => { - encryptedConnection.setInnerConn(state.secure) + encryptedConnection.set...
fix: cascading connection from encrypted connection to parent connection
libp2p_js-libp2p-secio
train
7be4492660157705207cc6559596e24b7519c92b
diff --git a/packages/cli/src/commands/build.js b/packages/cli/src/commands/build.js index <HASH>..<HASH> 100644 --- a/packages/cli/src/commands/build.js +++ b/packages/cli/src/commands/build.js @@ -7,7 +7,6 @@ exports.builder = argv => .example('$0 build') // watch .array('watch') - .default('watch',...
🔩 cli: remove watch flag default If watch flag is set it gets initialised as empty array. Removing the default prevents the watcher from starting even though the flag is not set.
dennisreimann_uiengine
train
b871eb5db1669d5b0d14a230aae531114ca1e837
diff --git a/src/vs/workbench/electron-browser/bootstrap/index.js b/src/vs/workbench/electron-browser/bootstrap/index.js index <HASH>..<HASH> 100644 --- a/src/vs/workbench/electron-browser/bootstrap/index.js +++ b/src/vs/workbench/electron-browser/bootstrap/index.js @@ -3,8 +3,6 @@ * Licensed under the MIT License. ...
:lipstick: remove outdated comment
Microsoft_vscode
train
e7592b1c99b9ba21688227d6d517721f70f092ae
diff --git a/pkg/kubectl/describe.go b/pkg/kubectl/describe.go index <HASH>..<HASH> 100644 --- a/pkg/kubectl/describe.go +++ b/pkg/kubectl/describe.go @@ -725,7 +725,7 @@ func describeContainers(pod *api.Pod, out io.Writer) { } fmt.Fprintf(out, " Ready:\t%v\n", printBool(status.Ready)) fmt.Fprintf(out, " ...
Change variables to environment variables when describe containers
kubernetes_kubernetes
train
bf6150aa80c5be4b3b610c4fad25255f1f22ebb7
diff --git a/hpICsp/__init__.py b/hpICsp/__init__.py index <HASH>..<HASH> 100644 --- a/hpICsp/__init__.py +++ b/hpICsp/__init__.py @@ -46,10 +46,13 @@ import sys PYTHON_VERSION = sys.version_info[:3] PY2 = (PYTHON_VERSION[0] == 2) +PY3 = (PYTHON_VERSION[0] == 3) + if PY2: if PYTHON_VERSION < (2, 7, 9): ...
update setup.py to pushish at pypi
HewlettPackard_python-hpICsp
train
e2e3874bac23b78d6c4b325c277a74488fdb3f2f
diff --git a/src/Command/DBLogClearCommand.php b/src/Command/DBLogClearCommand.php index <HASH>..<HASH> 100644 --- a/src/Command/DBLogClearCommand.php +++ b/src/Command/DBLogClearCommand.php @@ -83,8 +83,7 @@ class DBLogClearCommand extends ContainerAwareCommand ); return false; - } -...
Applied PHPQA to meet PSR2 requirements
hechoendrupal_drupal-console
train
529e1dcb2094a666056ffc67c72a49963f0e0f80
diff --git a/dist/leaflet.canvaslayer.field.js b/dist/leaflet.canvaslayer.field.js index <HASH>..<HASH> 100644 --- a/dist/leaflet.canvaslayer.field.js +++ b/dist/leaflet.canvaslayer.field.js @@ -276,6 +276,8 @@ }, { key: 'getCellsForPyramid', value: function getCellsForPyramid(nPyramid) { + ...
Pyramid level for scale. In progress...
IHCantabria_Leaflet.CanvasLayer.Field
train
f16fc01d88ff7b93f65ebfbdc957fd66cd5a2002
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -1,7 +1,7 @@ const parser = require('yaml-js') const seperators = [ '---', '= yaml ='] -const pattern = pattern = '^(' +const pattern = '^(' + '((= yaml =)|(---))' + '$([\\s\\S]*?)' + '\\2'
Update index.js const + assignment causes error in firefox: SyntaxError: invalid assignment to const pattern
jxson_front-matter
train
8e6f4fedc27aef0f35104e1d9de614f72f7539aa
diff --git a/java/src/org/openqa/selenium/grid/sessionmap/redis/RedisBackedSessionMap.java b/java/src/org/openqa/selenium/grid/sessionmap/redis/RedisBackedSessionMap.java index <HASH>..<HASH> 100644 --- a/java/src/org/openqa/selenium/grid/sessionmap/redis/RedisBackedSessionMap.java +++ b/java/src/org/openqa/selenium/gr...
[grid] Remove sessions from Redis backed session map on restart
SeleniumHQ_selenium
train
749883cc1b78867ca1c5134df1c2cec30293d5b8
diff --git a/Neos.Neos/Tests/Unit/Fusion/PluginImplementationTest.php b/Neos.Neos/Tests/Unit/Fusion/PluginImplementationTest.php index <HASH>..<HASH> 100644 --- a/Neos.Neos/Tests/Unit/Fusion/PluginImplementationTest.php +++ b/Neos.Neos/Tests/Unit/Fusion/PluginImplementationTest.php @@ -69,19 +69,19 @@ class PluginImple...
TASK: Drop useless mock expectations
neos_neos-development-collection
train
a3b613b8e20f0255ab0ad569196c7241bd12da93
diff --git a/cloudfoundry-client-reactor/src/main/java/org/cloudfoundry/reactor/util/JsonCodec.java b/cloudfoundry-client-reactor/src/main/java/org/cloudfoundry/reactor/util/JsonCodec.java index <HASH>..<HASH> 100644 --- a/cloudfoundry-client-reactor/src/main/java/org/cloudfoundry/reactor/util/JsonCodec.java +++ b/clou...
Enlarge Maximum JSON Payload Size Previously, the newly working JsonObjectDecoder was instantiated using its default maximum payload size of 1MB. Certain CF payloads, specifically out of the UAA can exceed this size. This change ups that maximum limit to <I>M which should cover all current payloads. This may need t...
cloudfoundry_cf-java-client
train
2cef0778eef715bb706de086e0eaa5ca46b09aba
diff --git a/extra/renderer-and-libwebrtc-tests.js b/extra/renderer-and-libwebrtc-tests.js index <HASH>..<HASH> 100644 --- a/extra/renderer-and-libwebrtc-tests.js +++ b/extra/renderer-and-libwebrtc-tests.js @@ -353,7 +353,22 @@ function TestRTCPeerConnection(localStream) { console.log('pc1.iceGatheringStateChange'...
handle 'Failed to set local answer sdp: Called in wrong state: kStable' on test script
BasqueVoIPMafia_cordova-plugin-iosrtc
train
793f0f8583b20bee86af315e1853852698ab28e3
diff --git a/hazelcast/src/main/java/com/hazelcast/internal/ascii/memcache/MemcacheEntry.java b/hazelcast/src/main/java/com/hazelcast/internal/ascii/memcache/MemcacheEntry.java index <HASH>..<HASH> 100644 --- a/hazelcast/src/main/java/com/hazelcast/internal/ascii/memcache/MemcacheEntry.java +++ b/hazelcast/src/main/jav...
Implement MemcacheEntry.getKey * Use foreknowledge of the layout of MemcacheEntry.bytes to start from the fixed point TextCommandConstants.VALUE_SPACE (the literal "VALUE "), and traverse the byte array until a single space is located. * Copy the range traversed to a separate byte array and return as a String. return...
hazelcast_hazelcast
train
ef80908810f60c873ad2e74d31cbd0ba9621f9ff
diff --git a/test/stateEventsSpec.js b/test/stateEventsSpec.js index <HASH>..<HASH> 100644 --- a/test/stateEventsSpec.js +++ b/test/stateEventsSpec.js @@ -36,7 +36,10 @@ describe('UI-Router v0.2.x $state events', function () { C = {}, D = { params: { x: {}, y: {} } }, DD = { parent: D, params: { z: {} } ...
test(stateEvents): Add delays to superseded transition tests.
angular-ui_ui-router
train
a65375f4142b9af92e2e1368d1f5059316ae4858
diff --git a/src/widgets/PasswordInput.php b/src/widgets/PasswordInput.php index <HASH>..<HASH> 100644 --- a/src/widgets/PasswordInput.php +++ b/src/widgets/PasswordInput.php @@ -118,7 +118,9 @@ class PasswordInput extends Widget $('{$selector} .show-password').click(function(event, value) { ...
PasswordInput - fixed JS (minor)
hiqdev_hipanel-core
train
6983ff24da639a15a14bf78aecfb55e0bc052f4a
diff --git a/src/cr/cube/crunch_cube.py b/src/cr/cube/crunch_cube.py index <HASH>..<HASH> 100644 --- a/src/cr/cube/crunch_cube.py +++ b/src/cr/cube/crunch_cube.py @@ -201,6 +201,9 @@ class CrunchCube(object): return res def _mr_prune(self, res): + if len(res.shape) > 2: + # Only perfor...
Only prune 1-D MR cubes.
Crunch-io_crunch-cube
train
0d632fb86ae8a39a64883533504bb5abc7a7532e
diff --git a/lib/sandbox.js b/lib/sandbox.js index <HASH>..<HASH> 100644 --- a/lib/sandbox.js +++ b/lib/sandbox.js @@ -37,6 +37,7 @@ exports.document = { } exports.location = { + href: normalize(process.cwd() + "/index.js"), search: "" }
fix location.href in sandbox
seajs_seajs
train
f9ff813f231a35ba936f3b3447e741906e911016
diff --git a/src/rammbock/Encode.py b/src/rammbock/Encode.py index <HASH>..<HASH> 100644 --- a/src/rammbock/Encode.py +++ b/src/rammbock/Encode.py @@ -1,8 +1,8 @@ - def encode_to_bin(message): whole_message = "" whole_message += _get_headers_from_msg_object(message) whole_message += _get_ie_from_msg_obj...
works little bit beter, but unit test and atest does not provide data in same format. let's see tomorow
robotframework_Rammbock
train
a390e37abc29fee7a96b89003c552ed047c40706
diff --git a/js/views/conversation_list_view.js b/js/views/conversation_list_view.js index <HASH>..<HASH> 100644 --- a/js/views/conversation_list_view.js +++ b/js/views/conversation_list_view.js @@ -8,10 +8,14 @@ Whisper.ConversationListView = Whisper.ListView.extend({ tagName: 'div', itemView: W...
Fixup change:active_at handling when setting null When a conversation goes from active to not active, it should be removed the view rather than promoted. // FREEBIE
ForstaLabs_librelay-node
train
05862efbeda39478e14919913c8d350602cf79da
diff --git a/www/src/py_builtin_functions.js b/www/src/py_builtin_functions.js index <HASH>..<HASH> 100644 --- a/www/src/py_builtin_functions.js +++ b/www/src/py_builtin_functions.js @@ -443,8 +443,6 @@ function getattr(obj,attr,_default){ var klass = $B.get_class(obj) - //if(attr=='__str__'){console.log('a...
Fixes repr of a few built-in functions (eval, print...)
brython-dev_brython
train
607e034ff0a421c575763774e2a390f1c0f0cfec
diff --git a/package.json b/package.json index <HASH>..<HASH> 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jsmpeg-player", - "version": "1.3.0", + "version": "1.3.1", "description": "MPEG1 Video Player Based On JSMpeg", "main": "build/JSMpeg.js", "scripts": { diff --git a/src/l...
<I> update from origin jsmpeg Add on{Audio/Video}Decode callbacks, meassure perf
cycdpo_jsmpeg-player
train
f80da81ae9a38c0748d2a6842eaf2cfbb0f74089
diff --git a/lib/zendesk_apps_support/validations/svg.rb b/lib/zendesk_apps_support/validations/svg.rb index <HASH>..<HASH> 100644 --- a/lib/zendesk_apps_support/validations/svg.rb +++ b/lib/zendesk_apps_support/validations/svg.rb @@ -10,6 +10,8 @@ module ZendeskAppsSupport package.svg_files.each do |svg| ...
[WIP] Ignore whitelisted attributes
zendesk_zendesk_apps_support
train
59785104efb4a8c6dc5d27aec89c02d734184c75
diff --git a/test/integration/tests.js b/test/integration/tests.js index <HASH>..<HASH> 100644 --- a/test/integration/tests.js +++ b/test/integration/tests.js @@ -306,15 +306,24 @@ test('Gets entries by inverse creation order', (t) => { }) }) +/** + * This test checks if entries can be ordered by two properties. ...
test: Fix tests relying on default order of items
contentful_contentful.js
train
61d113a01889782c45db0a544621fe3715aa7d89
diff --git a/test/client.test.js b/test/client.test.js index <HASH>..<HASH> 100644 --- a/test/client.test.js +++ b/test/client.test.js @@ -312,6 +312,17 @@ IpfsApis.forEach(function(ipfsApi) { assert.equal(first.payload.value, 'hello4'); done(); })); + + it('returns items in the co...
Add a test for checking the order of entries with .iterator()
orbitdb_orbit-db
train
837fa471be4164538dd0967f6d1459b74206ce95
diff --git a/ELiDE/app.py b/ELiDE/app.py index <HASH>..<HASH> 100644 --- a/ELiDE/app.py +++ b/ELiDE/app.py @@ -140,6 +140,20 @@ class ELiDELayout(FloatLayout): tick=self.tickupd ) + @self.engine.on_time + def pulltime(e, b, t): + self.unbind( + branch=self...
a way to make sure kivy notices when the (branch, tick) changes
LogicalDash_LiSE
train
939eec2127dd22534ccabc81d9411ad870176c4e
diff --git a/test/Psy/Test/Readline/LibeditTest.php b/test/Psy/Test/Readline/LibeditTest.php index <HASH>..<HASH> 100644 --- a/test/Psy/Test/Readline/LibeditTest.php +++ b/test/Psy/Test/Readline/LibeditTest.php @@ -28,7 +28,6 @@ class LibeditTest extends \PHPUnit_Framework_TestCase $this->markTestSkipped('...
We shouldn’t clear history, since we’re starting a new history file.
bobthecow_psysh
train
69ce9ce49243d76108132a5ed567d060e8162c1e
diff --git a/easybatch-core/src/main/java/org/easybatch/core/impl/EngineBuilder.java b/easybatch-core/src/main/java/org/easybatch/core/impl/EngineBuilder.java index <HASH>..<HASH> 100755 --- a/easybatch-core/src/main/java/org/easybatch/core/impl/EngineBuilder.java +++ b/easybatch-core/src/main/java/org/easybatch/core/i...
change the name of the method to set engine name
j-easy_easy-batch
train
9ee8b9920e98fa1123ebf64512c6d0de5e9a9b4a
diff --git a/apiserver/client/client.go b/apiserver/client/client.go index <HASH>..<HASH> 100644 --- a/apiserver/client/client.go +++ b/apiserver/client/client.go @@ -415,15 +415,11 @@ func (c *Client) DestroyMachines(args params.DestroyMachines) error { return common.DestroyMachines(c.api.stateAccessor, args.Force, ...
Include a controllerSocket configuration variable for the GUI.
juju_juju
train
e9d24382d683cb0bbc8f645672535a4e30001337
diff --git a/waddrmgr/db.go b/waddrmgr/db.go index <HASH>..<HASH> 100644 --- a/waddrmgr/db.go +++ b/waddrmgr/db.go @@ -252,9 +252,10 @@ var ( watchingOnlyName = []byte("watchonly") // Sync related key names (sync bucket). - syncedToName = []byte("syncedto") - startBlockName = []byte("startblock") - birthdayN...
waddrmgr/db: add birthday block within syncBucket In this commit, we add a new key/value pair within the waddrmgr's syncBucket that will represent the birthday block of the wallet. This can then be used to force rescans from this point, rather than from the genesis block.
btcsuite_btcwallet
train
87542e77dea3dc16c084ad56728882c03020a6f2
diff --git a/cloudfoundry-client-reactor/src/main/java/org/cloudfoundry/reactor/util/UserAgent.java b/cloudfoundry-client-reactor/src/main/java/org/cloudfoundry/reactor/util/UserAgent.java index <HASH>..<HASH> 100644 --- a/cloudfoundry-client-reactor/src/main/java/org/cloudfoundry/reactor/util/UserAgent.java +++ b/clou...
Enhance User Agent This change adds more information to the User-Agent exposing the version of Java and the version of Netty used for the request.
cloudfoundry_cf-java-client
train
4eb8903bed2c509eaedf80aee4840072179d41db
diff --git a/test/test_grammars.rb b/test/test_grammars.rb index <HASH>..<HASH> 100644 --- a/test/test_grammars.rb +++ b/test/test_grammars.rb @@ -6,6 +6,8 @@ class TestGrammars < Minitest::Test LICENSE_WHITELIST = [ # This grammar's MIT license is inside a subdirectory. "vendor/grammars/SublimePapyrus", +...
Comment for GAP grammar in whitelist
github_linguist
train
148a97ff98f16a57faaf1933c4ac9c02d39f7566
diff --git a/src/animation.js b/src/animation.js index <HASH>..<HASH> 100644 --- a/src/animation.js +++ b/src/animation.js @@ -41,7 +41,6 @@ function createAnimation(startState, endState, options, transformProperty) { stop() { stopped = true; }, endState() { return endState; }, isStopped() { return stopp...
Re-added 'stop' command that got lost in the refactor
daniel-lundin_snabbt.js
train
b002ec47fb7879cafd1cf5abd56b4860241efe81
diff --git a/lark/load_grammar.py b/lark/load_grammar.py index <HASH>..<HASH> 100644 --- a/lark/load_grammar.py +++ b/lark/load_grammar.py @@ -176,7 +176,6 @@ class SimplifyRule_Visitor(Visitor): break tree.expand_kids_by_index(*to_expand) - def expansion(self, tree): # rul...
BUGFIX: Repeating subrules are now allowed (Issue #<I>)
lark-parser_lark
train