hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
ca6d9b77a0d8ce9e1c9219347e847413db38ab63
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,8 @@ As a component ### function - - function (value) + - is.function(value) + - is.aFunction(value) - for ES3 browsers, where "function" is a reserved word ### number diff --git a/index.js b/index.js i...
"is.function" will throw a syntax error in older browsers, because in ES3, "function" is a reserved word.
enricomarino_is
train
0714cc4139acc08cb1557a8c1cc4c5bc1a74a996
diff --git a/tests/test_multi_user.py b/tests/test_multi_user.py index <HASH>..<HASH> 100644 --- a/tests/test_multi_user.py +++ b/tests/test_multi_user.py @@ -22,10 +22,10 @@ class TestCase(BaseTestCase): self.prepare_client('/multi_user2/', username='test_user') resp = self.client.post() res...
multi-lane look like OK but other wf's broken rref #<I> ref GH-<I> rref #<I> ref GH-<I>
zetaops_zengine
train
e400609e0fa84a67f544ac8c9a0f829cc2be9ae5
diff --git a/salt/client.py b/salt/client.py index <HASH>..<HASH> 100644 --- a/salt/client.py +++ b/salt/client.py @@ -27,6 +27,7 @@ The data structurte needs to be: import os import re +import glob import time import cPickle as pickle @@ -66,6 +67,30 @@ class LocalClient(object): pub_data = self.pub(t...
Add support for globs and regex in the target syntax
saltstack_salt
train
01adda0970bd98709e6d6169b625461fded330bc
diff --git a/udiskie/cli.py b/udiskie/cli.py index <HASH>..<HASH> 100644 --- a/udiskie/cli.py +++ b/udiskie/cli.py @@ -251,7 +251,10 @@ class _EntryPoint(object): """Start asynchronous operations.""" try: self.udisks = yield get_backend(self.options['udisks_version']) - yield s...
Set non-zero exitcode in case of error Resolves #<I>
coldfix_udiskie
train
2b414cc3e6efb6dc657ae87aa550838f8f77e882
diff --git a/pypln/api.py b/pypln/api.py index <HASH>..<HASH> 100644 --- a/pypln/api.py +++ b/pypln/api.py @@ -66,6 +66,16 @@ class Corpus(object): def __hash__(self): return hash(repr(self)) + @classmethod + def from_url(cls, url, auth): + result = requests.get(url, auth=auth) + if ...
Allows user to instantiate a corpus from a url
NAMD_pypln.api
train
adc9cb215ae466d4252e322b6a83359d9a962477
diff --git a/src/test/java/redis/clients/jedis/tests/commands/ClusterCommandsTest.java b/src/test/java/redis/clients/jedis/tests/commands/ClusterCommandsTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/redis/clients/jedis/tests/commands/ClusterCommandsTest.java +++ b/src/test/java/redis/clients/jedis/tests/com...
Fix ClusterCommandTest AfterClass handling as it may leave the cluster inconsistent
xetorthio_jedis
train
50fc8ec8074999f65da537a57e743d6809c702ef
diff --git a/lib/safenet.rb b/lib/safenet.rb index <HASH>..<HASH> 100644 --- a/lib/safenet.rb +++ b/lib/safenet.rb @@ -296,7 +296,7 @@ module SafeNet # Optional payload payload = {} - payload["name"] = SafeNet.escape(options[:name]) if options.has_key?(:name) + payload["name"] = options[:name]...
Bugfix: move_file method: if the path has a space on it, it changes to %<I>.
loureirorg_ruby-safenet
train
2497d88639852ce13b7fdbf86ea0e0c53b92c3f4
diff --git a/src/utils/helpers.js b/src/utils/helpers.js index <HASH>..<HASH> 100644 --- a/src/utils/helpers.js +++ b/src/utils/helpers.js @@ -2,7 +2,7 @@ * Get value of an object property/path even if it's nested */ export function getValueByPath(obj, path) { - const value = path.split('.').reduce((o, i) => o[...
improve reliability of getValueByPath helper function (#<I>)
buefy_buefy
train
2098df9d60532c1dd9d1ad105ec03d812acf50e4
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ </a> <a href="https://insight.sensiolabs.com/projects/703f233e-0738-4bf3-9d47-09d3c6de19b0" target="_blank"> <img src="https://insight.sensiolabs.com/projects/703f233e-0738-4bf3-9d47-09d3c...
Implicit declare the HTTP method for the route
leocavalcante_siler
train
65c6cc6fec53d67879d738dce38fe1022dbf91b3
diff --git a/oidc_provider/lib/utils/token.py b/oidc_provider/lib/utils/token.py index <HASH>..<HASH> 100644 --- a/oidc_provider/lib/utils/token.py +++ b/oidc_provider/lib/utils/token.py @@ -91,7 +91,12 @@ def client_id_from_id_token(id_token): Returns a string or None. """ payload = JWT().unpack(id_toke...
Fixed client id retrieval when aud is a list of str. (#<I>) * Fixed client id retrievel when aud is a list of str. * Split tests.
juanifioren_django-oidc-provider
train
3e0cb229df42a7a985d4dce6f64cd389309a30e4
diff --git a/ev3dev/core.py b/ev3dev/core.py index <HASH>..<HASH> 100644 --- a/ev3dev/core.py +++ b/ev3dev/core.py @@ -2814,9 +2814,10 @@ class Sound: return Popen('/usr/bin/aplay -q "%s"' % wav_file, stdout=n, shell=True) @staticmethod - def speak(text): + def speak(text, espeak_opts='-a 200 ...
Allow passing espeak options to Sound.speak (#<I>) My main motivation is to allow controll over words-per-minute rate, but I guess there are other possible uses.
ev3dev_ev3dev-lang-python
train
c1d5d77566a4c907b0923b8a7493fad0fbf1188d
diff --git a/translator/src/main/java/com/google/devtools/j2objc/javac/JavacEnvironment.java b/translator/src/main/java/com/google/devtools/j2objc/javac/JavacEnvironment.java index <HASH>..<HASH> 100644 --- a/translator/src/main/java/com/google/devtools/j2objc/javac/JavacEnvironment.java +++ b/translator/src/main/java/...
Prepare for JDK 9 Symtab changes Use reflection to access Symtab methods that are changing in JDK 9 to remain compatible in both directions.
google_j2objc
train
fad6c8ac2d1d49e33d7398d7464ef489e4895a55
diff --git a/dht_net.go b/dht_net.go index <HASH>..<HASH> 100644 --- a/dht_net.go +++ b/dht_net.go @@ -23,7 +23,7 @@ import ( "go.opencensus.io/tag" ) -var dhtReadMessageTimeout = time.Minute +var dhtReadMessageTimeout = 10 * time.Second var dhtStreamIdleTimeout = 1 * time.Minute var ErrReadTimeout = fmt.Errorf(...
feat: reduce request read timeout (#<I>) This should stop us from waiting on unresponsive peers. This only kicks in when we've already _sent_ a request so this: * Shouldn't be blocked on other requests we're planning on making. * Shouldn't be blocked on dialing.
libp2p_go-libp2p-kad-dht
train
2a1975cbc9fae651f233510eee58304bcebc9ca2
diff --git a/mod/forum/lib.php b/mod/forum/lib.php index <HASH>..<HASH> 100644 --- a/mod/forum/lib.php +++ b/mod/forum/lib.php @@ -2185,30 +2185,28 @@ function forum_print_attachments($post, $return=NULL) { if ($basedir = forum_file_area($post)) { if ($files = get_directory_list($basedir)) { ...
removed file pop-ups; merged from MOODLE_<I>_STABLE
moodle_moodle
train
78d094d20c9a6c8fc8633558fc25376fb88da972
diff --git a/SlevomatCodingStandard/Helpers/ReferencedNameHelper.php b/SlevomatCodingStandard/Helpers/ReferencedNameHelper.php index <HASH>..<HASH> 100644 --- a/SlevomatCodingStandard/Helpers/ReferencedNameHelper.php +++ b/SlevomatCodingStandard/Helpers/ReferencedNameHelper.php @@ -92,14 +92,17 @@ class ReferencedNameH...
Fixed detecting unused uses for multiple traits on the same line
slevomat_coding-standard
train
a4263e7db5766bc8ce9feb9eb4097d0d0068e8bc
diff --git a/transloadit.go b/transloadit.go index <HASH>..<HASH> 100755 --- a/transloadit.go +++ b/transloadit.go @@ -102,7 +102,11 @@ func (client *Client) doRequest(req *http.Request) (Response, error) { func (client *Client) request(method string, path string, content map[string]interface{}) (Response, error) { ...
Don't add entpoint to urls with scheme
transloadit_go-sdk
train
705c4322728f7b816db66984b3ede9b3aa0e17b6
diff --git a/PHPCI/Plugin/CopyBuild.php b/PHPCI/Plugin/CopyBuild.php index <HASH>..<HASH> 100644 --- a/PHPCI/Plugin/CopyBuild.php +++ b/PHPCI/Plugin/CopyBuild.php @@ -39,7 +39,7 @@ class CopyBuild implements \PHPCI\Plugin return false; } - $cmd = 'mkdir -p "%s" && cp -Rf "%s" "%s/"'; + ...
Fixing the copy_build plugin, issue #<I>
dancryer_PHPCI
train
1ffbb5c24c04d961a9bb6fbb45b97734d4c1ff59
diff --git a/cmd/web-handlers_test.go b/cmd/web-handlers_test.go index <HASH>..<HASH> 100644 --- a/cmd/web-handlers_test.go +++ b/cmd/web-handlers_test.go @@ -1590,12 +1590,14 @@ func TestWebObjectLayerFaultyDisks(t *testing.T) { z := obj.(*xlZones) xl := z.zones[0].sets[0] xlDisks := xl.getDisks() + z.zones[0].x...
fix racy tests when editing xl.getDisks (#<I>)
minio_minio
train
aabf00d1569655b2a97fee130b48e3b1762aa616
diff --git a/plugin/geomajas-plugin-deskmanager/deskmanager/src/main/java/org/geomajas/plugin/deskmanager/command/manager/dto/GetTerritoriesRequest.java b/plugin/geomajas-plugin-deskmanager/deskmanager/src/main/java/org/geomajas/plugin/deskmanager/command/manager/dto/GetTerritoriesRequest.java index <HASH>..<HASH> 1006...
GDM-<I>: make command names more unique GDM-<I>: unit test assertion order
geomajas_geomajas-project-server
train
2870031844dfc28919763d5c05c1d1bc6db8f4f1
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -16,10 +16,6 @@ else: with open("README.md") as readme_file: long_description = readme_file.read() -tests_require = [ - "vcrpy>=1.10.3", -] - setup( name="tweepy", version=version, @@ -42,7 +38,6 @@ setup...
Remove tests_require from setup.py setup.py test has been deprecated with <URL>
tweepy_tweepy
train
f38b63d240b3f9bc12e9e26a4bb53260400ea720
diff --git a/ate/runner.py b/ate/runner.py index <HASH>..<HASH> 100644 --- a/ate/runner.py +++ b/ate/runner.py @@ -51,7 +51,7 @@ class Runner(object): @param (str) context level, testcase or testset """ # convert keys in request headers to lowercase - config_dict = utils.lower_dict_key...
bugfix: keys that are not in 'request' of config shall not be lower cased
HttpRunner_HttpRunner
train
621b9fff194e0593b9fa9e72e3be73d487ff4fa8
diff --git a/formats/__init__.py b/formats/__init__.py index <HASH>..<HASH> 100644 --- a/formats/__init__.py +++ b/formats/__init__.py @@ -5,7 +5,7 @@ Support multiple formats with ease. - :copyright: (c) 2014 by Hidde Bultsma. + :copyright: (c) 2015 by Hidde Bultsma. :license: MIT, see LICENSE for ...
Pre-release: <I>a3
redodo_formats
train
8845e760c736cc184fd845af83f216d222fdbe38
diff --git a/test.rb b/test.rb index <HASH>..<HASH> 100644 --- a/test.rb +++ b/test.rb @@ -127,9 +127,6 @@ end ctx = Twostroke::Context.new -# these are test suites that must be run in an isolated context -isolated_tests = [/mootools/] - files = Dir[File.expand_path("../test/*.js", __FILE__)] .sort ...
remove isolated_tests from test.rb
charliesome_twostroke
train
86b7f48e437bf85044bd9b5381a0ee0e9ec62cab
diff --git a/src/Generators/ViewGenerate.php b/src/Generators/ViewGenerate.php index <HASH>..<HASH> 100644 --- a/src/Generators/ViewGenerate.php +++ b/src/Generators/ViewGenerate.php @@ -2,8 +2,6 @@ namespace Amranidev\ScaffoldInterface\Generators; -use Amranidev\ScaffoldInterface\Datasystem\Datasystem; - /** *...
refactor ViewGenerate Class
amranidev_scaffold-interface
train
4c383daf8a9d7aaa5049a98d7d6da19c85793d2d
diff --git a/test/test_consumer_group.py b/test/test_consumer_group.py index <HASH>..<HASH> 100644 --- a/test/test_consumer_group.py +++ b/test/test_consumer_group.py @@ -44,6 +44,7 @@ def test_consumer(kafka_broker, version): assert len(consumer._client._conns) > 0 node_id = list(consumer._client._conns.keys...
Close KafkaConsumer instances during tests (#<I>)
dpkp_kafka-python
train
49cbcefc9c2b90ff59426a05c3b52e8f7e6c9f1a
diff --git a/third_party/language-mapping-list/language-mapping-list.js b/third_party/language-mapping-list/language-mapping-list.js index <HASH>..<HASH> 100644 --- a/third_party/language-mapping-list/language-mapping-list.js +++ b/third_party/language-mapping-list/language-mapping-list.js @@ -493,6 +493,10 @@ mozilla....
Update language mapping - Add Kurdish ("ku") to supplement Kurdish-Turkey ("ku-TR") - Alphabetize Norwegian ("no") - Normalize case on Chinese ("HANS" and "HANT") Change-Id: I<I>ae<I>b<I>cdf8a<I>da<I>f4f<I>a7eb7f<I>
google_shaka-player
train
8c2b4616dd784f9c578a88e690c83ee9cf36f429
diff --git a/nikeplus/export.py b/nikeplus/export.py index <HASH>..<HASH> 100644 --- a/nikeplus/export.py +++ b/nikeplus/export.py @@ -2,14 +2,12 @@ Export nikeplus data to csv or print to screen """ +import argparse from collections import namedtuple import json -import urllib -import urllib2 +import sys import...
Add proper arg parsing and access token via command line
durden_nikeplus
train
f085a36fb728fe1079d32fc07540274e2161e5ab
diff --git a/pysnmp/proto/secmod/rfc3414/service.py b/pysnmp/proto/secmod/rfc3414/service.py index <HASH>..<HASH> 100644 --- a/pysnmp/proto/secmod/rfc3414/service.py +++ b/pysnmp/proto/secmod/rfc3414/service.py @@ -791,7 +791,8 @@ class SnmpUSMSecurityModel(AbstractSecurityModel): int(time.time()) ...
work even if transport dispatcher is not available
etingof_pysnmp
train
5d451085933a258060b9b5609f0417c36e38ac77
diff --git a/lib/unexpectedMitm.js b/lib/unexpectedMitm.js index <HASH>..<HASH> 100644 --- a/lib/unexpectedMitm.js +++ b/lib/unexpectedMitm.js @@ -689,7 +689,32 @@ module.exports = { expect.promise(function () { return expect.shift(); - }).caught(handle...
Restore the code to empty any unused remaining request descriptions.
unexpectedjs_unexpected-mitm
train
6953a8680466f638fba6affbb9cda8aea6378e63
diff --git a/examples/create_shipment.py b/examples/create_shipment.py index <HASH>..<HASH> 100755 --- a/examples/create_shipment.py +++ b/examples/create_shipment.py @@ -3,6 +3,7 @@ This example shows how to ship shipments. """ import logging +import binascii from fedex.services.ship_service import FedexProcessShi...
Add examples of how to store or print labels.
python-fedex-devs_python-fedex
train
8f47a60e4e293cd4fa2760ad31c233bc8cbebd98
diff --git a/lib/db/upgrade.php b/lib/db/upgrade.php index <HASH>..<HASH> 100644 --- a/lib/db/upgrade.php +++ b/lib/db/upgrade.php @@ -792,5 +792,31 @@ function xmldb_main_upgrade($oldversion) { upgrade_main_savepoint(true, 2012060100.02); } + if ($oldversion < 2012060100.03) { + // Merge dupl...
MDL-<I> Remap all instances of an external file to a single record in files_reference
moodle_moodle
train
db6bde03ec12dbec3d80450e1e303521781bc634
diff --git a/dcard/posts.py b/dcard/posts.py index <HASH>..<HASH> 100644 --- a/dcard/posts.py +++ b/dcard/posts.py @@ -5,9 +5,14 @@ except ImportError: from . import api from .utils import Client +client = Client() + class Post: + def __init__(self): + pass + @staticmethod def build...
make multi-requests async. for high concurrency
leVirve_dcard-spider
train
c5296ed233708b0d8e22436e6f442ae57d12ff9e
diff --git a/rpc/src/main/java/io/datakernel/rpc/client/sender/RequestSenderFactory.java b/rpc/src/main/java/io/datakernel/rpc/client/sender/RequestSenderFactory.java index <HASH>..<HASH> 100644 --- a/rpc/src/main/java/io/datakernel/rpc/client/sender/RequestSenderFactory.java +++ b/rpc/src/main/java/io/datakernel/rpc/c...
modify RequestSenderFactory, servers() method is absent yet
softindex_datakernel
train
c38f8392fec1872a5bed52b791717fefde530668
diff --git a/lib/macho.rb b/lib/macho.rb index <HASH>..<HASH> 100644 --- a/lib/macho.rb +++ b/lib/macho.rb @@ -16,7 +16,7 @@ require_relative "macho/tools" # The primary namespace for ruby-macho. module MachO # release version - VERSION = "2.4.0" + VERSION = "2.5.0" # Opens the given filename as a MachOFile...
chore(version): <I> (#<I>)
Homebrew_ruby-macho
train
81aba27eb601e956bde79887c3fb2bf476a58f2e
diff --git a/devices/danfoss.js b/devices/danfoss.js index <HASH>..<HASH> 100644 --- a/devices/danfoss.js +++ b/devices/danfoss.js @@ -79,7 +79,8 @@ module.exports = [ .withDescription('Mean radiator load for room calculated by gateway for load balancing purposes (-8000=undefined)') .w...
Define `load_estimate` min/max value for Danfoss <I>G<I> (#<I>) * Update danfoss.js Hi, according to the Danfoss documentation the default value für load_estimate is -<I> therfore is added min and max for this expose. * Update danfoss.js
Koenkk_zigbee-shepherd-converters
train
301ce6b4f0da9d01734dd3a0360bff535a8acad5
diff --git a/airflow/bin/cli.py b/airflow/bin/cli.py index <HASH>..<HASH> 100755 --- a/airflow/bin/cli.py +++ b/airflow/bin/cli.py @@ -362,15 +362,10 @@ def run(args, dag=None): task = dag.get_task(task_id=args.task_id) ti = TaskInstance(task, args.execution_date) ti.refresh_from_db() - - log = loggin...
[AIRFLOW-<I>] Handle ti log entirely within ti Previously logging was setup outside a TaskInstance, this puts everything inside. Also propery closes the logging. Closes #<I> from bolkedebruin/AIRFLOW-<I>
apache_airflow
train
531df7a209968db7c20b014e6d62446f36ef6847
diff --git a/qdisc_linux.go b/qdisc_linux.go index <HASH>..<HASH> 100644 --- a/qdisc_linux.go +++ b/qdisc_linux.go @@ -278,9 +278,13 @@ func qdiscPayload(req *nl.NetlinkRequest, qdisc Qdisc) error { if qdisc.FlowDefaultRate > 0 { nl.NewRtAttrChild(options, nl.TCA_FQ_FLOW_DEFAULT_RATE, nl.Uint32Attr((uint32(qdisc...
Avoid serializing empty TCA_OPTIONS in qdisc messages This was causing a QdiscReplace() call for a generic qdisc (QdiscType="clsact", Parent=HANDLE_CLSACT) to fail with the error "invalid argument" after the qdisc was first created.
vishvananda_netlink
train
b5da3e15d08c2eb98955ed6a4f7d9c4fd5a6e5d5
diff --git a/tsfresh/examples/driftbif_simulation.py b/tsfresh/examples/driftbif_simulation.py index <HASH>..<HASH> 100644 --- a/tsfresh/examples/driftbif_simulation.py +++ b/tsfresh/examples/driftbif_simulation.py @@ -132,9 +132,9 @@ def sample_tau(n=10, kappa_3=0.3, ratio=0.5, rel_increase=0.15): return tau.toli...
Replace l with length (#<I>)
blue-yonder_tsfresh
train
10f69a859c8c664a8cdffa7f64359776f75ed31b
diff --git a/htmresearch/frameworks/nlp/classification_model.py b/htmresearch/frameworks/nlp/classification_model.py index <HASH>..<HASH> 100644 --- a/htmresearch/frameworks/nlp/classification_model.py +++ b/htmresearch/frameworks/nlp/classification_model.py @@ -298,7 +298,7 @@ class ClassificationModel(object): ...
Use string type for NLP model load path
numenta_htmresearch
train
7491b9a76ad7179a097fd26a2b556041a1441fb1
diff --git a/drivers_experimental_linux.go b/drivers_experimental_linux.go index <HASH>..<HASH> 100644 --- a/drivers_experimental_linux.go +++ b/drivers_experimental_linux.go @@ -2,14 +2,10 @@ package libnetwork -import ( - "github.com/docker/libnetwork/drivers/ipvlan" - "github.com/docker/libnetwork/drivers/macvl...
Moving MacVlan driver out of experimental
docker_libnetwork
train
c36985a93dea52726547ca24d9f596cc77bf2d56
diff --git a/app/actions/prottable/info.py b/app/actions/prottable/info.py index <HASH>..<HASH> 100644 --- a/app/actions/prottable/info.py +++ b/app/actions/prottable/info.py @@ -23,11 +23,7 @@ def count_peps_psms(proteindata, p_acc, pool): proteindata[p_acc][pool]['peptides'] = len(data['peptides']) -def add_...
Split proteindata map creation from output generator to be able to reuse it
glormph_msstitch
train
f8f01077ca0af52d6971b7872742710960c42bb0
diff --git a/grammpy_transforms/UnitRulesRemove/remove_unit_rules.py b/grammpy_transforms/UnitRulesRemove/remove_unit_rules.py index <HASH>..<HASH> 100644 --- a/grammpy_transforms/UnitRulesRemove/remove_unit_rules.py +++ b/grammpy_transforms/UnitRulesRemove/remove_unit_rules.py @@ -13,28 +13,31 @@ from typing import Li...
Remove type hinting for remove_unit_rules file
PatrikValkovic_grammpy
train
956e49b69bbe409a9f528c33388e32a0767ae1c8
diff --git a/src/GDAO/Model/CollectionInterface.php b/src/GDAO/Model/CollectionInterface.php index <HASH>..<HASH> 100644 --- a/src/GDAO/Model/CollectionInterface.php +++ b/src/GDAO/Model/CollectionInterface.php @@ -226,26 +226,6 @@ interface CollectionInterface extends \ArrayAccess, \Countable, \IteratorAggrega *...
Removed offsetSet from CollectionInterface.
rotexsoft_gdao
train
5b0010cb2a180addd8cf8f911c66b6237ed4396f
diff --git a/thumbor/handlers/__init__.py b/thumbor/handlers/__init__.py index <HASH>..<HASH> 100644 --- a/thumbor/handlers/__init__.py +++ b/thumbor/handlers/__init__.py @@ -747,6 +747,7 @@ class ImageApiHandler(ContextHandler): return False return True + @gen.coroutine def write_file(s...
Fix the bug that put method is not asynchronous which will stuck the thumbor server (#<I>) * Fix bug the put method stucks the tornado main thread, and remove method does not have a yield * Put add web.asynchronous and gen.coroutine
thumbor_thumbor
train
1e1f967076c2e255cbca8dca0bc16f7ee135a5d4
diff --git a/storybook/main.js b/storybook/main.js index <HASH>..<HASH> 100644 --- a/storybook/main.js +++ b/storybook/main.js @@ -1,4 +1,12 @@ module.exports = { addons: ['@storybook/addon-storysource'], - stories: ['../src/js/components/**/stories/*.(ts|tsx|js|jsx)'], + stories: [ + '../src/js/components/**/...
Updated loader of storybook to include context stories and 'All' stories (#<I>) * Updated loader of storybook to include context stories and 'All' stories. * Loaded missing typescript stories
grommet_grommet
train
eda0d6ed0b3facbdaa6a1e415775441a9d621e2d
diff --git a/src/Pdo.php b/src/Pdo.php index <HASH>..<HASH> 100644 --- a/src/Pdo.php +++ b/src/Pdo.php @@ -21,11 +21,9 @@ trait Pdo if (!isset($fields)) { $fields = []; foreach ($annotations['properties'] as $prop => $anno) { - if (isset($anno['Private'])) { - ...
ugh, ignore here too - prolly want to refactor that away
ornament-orm_core
train
8e6d7d81e5398a10b03cb99685463bdff6bb38d4
diff --git a/generators/app/index.js b/generators/app/index.js index <HASH>..<HASH> 100644 --- a/generators/app/index.js +++ b/generators/app/index.js @@ -69,6 +69,13 @@ module.exports = JhipsterGenerator.extend({ defaults: 'jhi' }); + // This adds support for a `--yarn` flag + thi...
Add --yarn flag to the generator
jhipster_generator-jhipster
train
409d03a0492eddd609c9dd23e526f008c0199f4f
diff --git a/public/assets/dashboard.js b/public/assets/dashboard.js index <HASH>..<HASH> 100644 --- a/public/assets/dashboard.js +++ b/public/assets/dashboard.js @@ -618,7 +618,7 @@ function menuDashboard() { $.each(menu, function (i, m) { $("#dashboard-menu").append(Mustache.render(tpl, ...
show dev tab on id user 1
edineibauer_uebDashboard
train
46feef25707d9fb8c812ccabef9c9d10caa852ab
diff --git a/src/main/java/com/mistraltech/smog/core/PropertyMatcher.java b/src/main/java/com/mistraltech/smog/core/PropertyMatcher.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/mistraltech/smog/core/PropertyMatcher.java +++ b/src/main/java/com/mistraltech/smog/core/PropertyMatcher.java @@ -40,32 +40,32 @@ p...
Trivial re-organisation of constructors in PropertyMatcher.
mistraltechnologies_smog
train
7d66838fe3137ca120ce4f731c8a293cfcf0b949
diff --git a/autoinput.js b/autoinput.js index <HASH>..<HASH> 100644 --- a/autoinput.js +++ b/autoinput.js @@ -47,6 +47,6 @@ function wrapAndJoin(pm, pos, type, attrs = null, predicate = null) { } function setAs(pm, pos, type, attrs) { - pm.apply(pm.tr.setType(pos, pos, new Node(type, attrs)) + pm.apply(pm.tr.set...
Fix some brokenness in the block menu
ProseMirror_prosemirror-inputrules
train
2c6c30bcc6bcf3fab166ec0db75d5d51f253113f
diff --git a/rb/lib/selenium/webdriver/ie/server.rb b/rb/lib/selenium/webdriver/ie/server.rb index <HASH>..<HASH> 100644 --- a/rb/lib/selenium/webdriver/ie/server.rb +++ b/rb/lib/selenium/webdriver/ie/server.rb @@ -4,13 +4,14 @@ module Selenium class Server STOP_TIMEOUT = 5 + DEPRECATION_WARNIN...
JariBakken: Deprecation warning when the standalone IE server is missing. r<I>
SeleniumHQ_selenium
train
4ff0185add426a8cfaa1ba75e675500f5f48a436
diff --git a/builder/virtualbox/driver.go b/builder/virtualbox/driver.go index <HASH>..<HASH> 100644 --- a/builder/virtualbox/driver.go +++ b/builder/virtualbox/driver.go @@ -50,6 +50,9 @@ func (d *VBox42Driver) IsRunning(name string) (bool, error) { } for _, line := range strings.Split(stdout.String(), "\n") { +...
Windows fixes Strip carriage returns from end of lines in virtualbox/driver.go, fixing wait for virtualbox host shutdown. Fix target upload directory path in communicator.go to use forward slashes. (When running on windows path/filepath returns backslashes...which does not work when the target host is unix).
hashicorp_packer
train
37626cbba117aaae0475fdba3212005c0301840b
diff --git a/Kwf/Assets/Dispatcher.php b/Kwf/Assets/Dispatcher.php index <HASH>..<HASH> 100644 --- a/Kwf/Assets/Dispatcher.php +++ b/Kwf/Assets/Dispatcher.php @@ -164,7 +164,7 @@ class Kwf_Assets_Dispatcher $contents = $dependency->getContents($language); $mtime = $dependency->getMTime...
send correct mime type for defer.js files
koala-framework_koala-framework
train
40f5b885919b6f69a73aae9aafd33c895d58db5d
diff --git a/lib/honeybadger.js b/lib/honeybadger.js index <HASH>..<HASH> 100644 --- a/lib/honeybadger.js +++ b/lib/honeybadger.js @@ -56,7 +56,7 @@ function Honeybadger(opts) { } function withUncaught() { - if (!uncaughtExceptionInstalled) { + if (this.reportUncaught !== false && !uncaughtExceptionInstalled) { ...
in withUncaught, check this.reportUncaught before creating listener
honeybadger-io_honeybadger-node
train
ca3fd9b481e45e1eaed02bb345f6146f7f46d25c
diff --git a/osmdroid-android/src/main/java/org/osmdroid/tileprovider/cachemanager/CacheManager.java b/osmdroid-android/src/main/java/org/osmdroid/tileprovider/cachemanager/CacheManager.java index <HASH>..<HASH> 100644 --- a/osmdroid-android/src/main/java/org/osmdroid/tileprovider/cachemanager/CacheManager.java +++ b/o...
feature/#<I>: Add a common type for List and IterableWithSize Introduce ListWrapper to make it possible to use the same IterableWithSize<T> reference for both List<T> and IterableWithSize<T>.
osmdroid_osmdroid
train
81f8100083b234cf2391b0e0a6301019cb520145
diff --git a/dynamic_initial_data/base.py b/dynamic_initial_data/base.py index <HASH>..<HASH> 100644 --- a/dynamic_initial_data/base.py +++ b/dynamic_initial_data/base.py @@ -163,7 +163,7 @@ class InitialDataUpdater(object): registered_for_deletion_receipts, ['model_obj_type_id', 'model_obj_id'], update_fi...
removed prefetch related since it fails on invalid ctypes
ambitioninc_django-dynamic-initial-data
train
4d5ac91f882c7a1abf787b4b05a7f762c0e60884
diff --git a/pkg/storage/cacher.go b/pkg/storage/cacher.go index <HASH>..<HASH> 100644 --- a/pkg/storage/cacher.go +++ b/pkg/storage/cacher.go @@ -367,7 +367,11 @@ func (c *Cacher) List(ctx context.Context, key string, resourceVersion string, p return err } + trace := util.NewTrace(fmt.Sprintf("cacher %v: List",...
Add tracing to listing in Cacher
kubernetes_kubernetes
train
c14429fea6e3cd2b3ba09a4b0ce3960e96a6584b
diff --git a/library/PHPIMS/Client.php b/library/PHPIMS/Client.php index <HASH>..<HASH> 100644 --- a/library/PHPIMS/Client.php +++ b/library/PHPIMS/Client.php @@ -118,6 +118,7 @@ class Client { * * @param string $path Path to the local image * @return string + * @throws PHPIMS\Client\Exception ...
Fixed phpdoc and added a test
imbo_imboclient-php
train
7f8d5dffb58d847e092ed29dd5f2731b5afce015
diff --git a/src/org/fit/cssbox/layout/BlockBox.java b/src/org/fit/cssbox/layout/BlockBox.java index <HASH>..<HASH> 100644 --- a/src/org/fit/cssbox/layout/BlockBox.java +++ b/src/org/fit/cssbox/layout/BlockBox.java @@ -1828,12 +1828,16 @@ public class BlockBox extends ElementBox margin.right = cont...
Introduced block boxes adjustable by contents (for tables)
radkovo_CSSBox
train
183f2f3f97e4abf5beadd7f759d2970d48b3af8c
diff --git a/store/helper/helper.go b/store/helper/helper.go index <HASH>..<HASH> 100644 --- a/store/helper/helper.go +++ b/store/helper/helper.go @@ -204,6 +204,7 @@ type HotTableIndex struct { func (h *Helper) FetchRegionTableIndex(metrics map[uint64]RegionMetric, allSchemas []*model.DBInfo) ([]HotTableIndex, error)...
infoschema: fix inaccurate statistics of TIDB_HOT_REGIONS (#<I>)
pingcap_tidb
train
6825ca80c134687b240b439cb4add7c69f8d8e10
diff --git a/src/cf/commands/application/push.go b/src/cf/commands/application/push.go index <HASH>..<HASH> 100644 --- a/src/cf/commands/application/push.go +++ b/src/cf/commands/application/push.go @@ -137,6 +137,11 @@ func (cmd *Push) bindAppToRoute(app cf.Application, params cf.AppParams, didCrea return } + i...
Respect "no-route" bool in manifests This will prevent `gcf push` from creating a route for you automatically, and is mostly useful for worker apps. I expect that this will be a lt more useful after #<I> hits.
cloudfoundry_cli
train
24dfc05881662808e165b106c86187cbc3be3f9b
diff --git a/lib/model/document.rb b/lib/model/document.rb index <HASH>..<HASH> 100644 --- a/lib/model/document.rb +++ b/lib/model/document.rb @@ -252,6 +252,9 @@ module SimpleXml tree = SubTree.new(sub_tree_def, self) @sub_tree_map[tree.id] = tree end + sub_tree_map.values.each do |tree| ...
Add support for processing nested subtrees as needed
projecttacoma_simplexml_parser
train
77c79f983be811aa3f4875083c1b1f4e95507a16
diff --git a/productmd/common.py b/productmd/common.py index <HASH>..<HASH> 100644 --- a/productmd/common.py +++ b/productmd/common.py @@ -473,7 +473,23 @@ def _parse_release_id_part(release_id, prefix=""): short, version = release_id.split("-") release_type = "ga" else: - short, version, ...
Fix parse release id with dash in type We have added updates-testing type, which breaks the parsing function. Renaming it is not an option at this point, so the parsing function is updated to extract known list of types first and only then try to take arbitrary value.
release-engineering_productmd
train
cda8fd632a67d6503811f69d81578f2ab41f3b6d
diff --git a/keyring/backends/kwallet.py b/keyring/backends/kwallet.py index <HASH>..<HASH> 100644 --- a/keyring/backends/kwallet.py +++ b/keyring/backends/kwallet.py @@ -135,8 +135,6 @@ class DBusKeyring(KeyringBackend): ) return SimpleCredential(str(username), str(password)) - retur...
Omit 'return None' as it's implied.
jaraco_keyring
train
33e3ce9639320b4a047dd2e0607168e03de74fc6
diff --git a/ding0/grid/mv_grid/solvers/base.py b/ding0/grid/mv_grid/solvers/base.py index <HASH>..<HASH> 100644 --- a/ding0/grid/mv_grid/solvers/base.py +++ b/ding0/grid/mv_grid/solvers/base.py @@ -193,10 +193,18 @@ class BaseSolution(object): g.add_edges_from(e) plt.figure() + ax = plt....
update animation feature change default path and resolution
openego_ding0
train
80adf5b2cc861ab6837ae03052378719e694bebc
diff --git a/tweepy/streaming.py b/tweepy/streaming.py index <HASH>..<HASH> 100644 --- a/tweepy/streaming.py +++ b/tweepy/streaming.py @@ -58,7 +58,7 @@ class Stream: ---------- running : bool Whether there's currently a stream running - session : Optional[:class:`requests.Session`] + session :...
Initialize Stream.session within Stream.__init__ Update the user agent based on Stream.user_agent even if Stream.session is already initialized
tweepy_tweepy
train
9a6e68a5e8f101a18680af97e4f1cc2f2e831465
diff --git a/doc2dash/__main__.py b/doc2dash/__main__.py index <HASH>..<HASH> 100644 --- a/doc2dash/__main__.py +++ b/doc2dash/__main__.py @@ -2,6 +2,7 @@ from __future__ import absolute_import, division, print_function import errno import logging +import logging.config import os import plistlib import shutil @@...
Write a special log handler for click
hynek_doc2dash
train
4f5ba143dbd0ea9733501def3d5283938fe94f64
diff --git a/public_html/index.php b/public_html/index.php index <HASH>..<HASH> 100644 --- a/public_html/index.php +++ b/public_html/index.php @@ -295,10 +295,10 @@ $tabContent .= Html::openElement('div', array( // About tab $about = '<div class="tab-pane" id="tab-about">'; -$about .= '<a href="//translatewiki.net/...
dashboard: Update graph to cover 8 months instead of 4 weeks
Krinkle_intuition
train
00b215936d9bbfaf49260ba70dd6a622e10bcb8c
diff --git a/auto_tests/tests/simple_drawing.js b/auto_tests/tests/simple_drawing.js index <HASH>..<HASH> 100644 --- a/auto_tests/tests/simple_drawing.js +++ b/auto_tests/tests/simple_drawing.js @@ -87,6 +87,7 @@ SimpleDrawingTestCase.prototype.testDrawSimpleDash = function() { var g = new Dygraph(graph, [[1, 4], [2...
disable failing test; it still works, but the test logic is broken
danvk_dygraphs
train
2823a207633699fe738af499067f4dd859b01e16
diff --git a/molo/core/tests/test_bulk_actions.py b/molo/core/tests/test_bulk_actions.py index <HASH>..<HASH> 100644 --- a/molo/core/tests/test_bulk_actions.py +++ b/molo/core/tests/test_bulk_actions.py @@ -168,5 +168,6 @@ class TestCopyBulkAction(TestCase, MoloTestCaseMixin): self.assertEquals(article.status_...
Update test_bulk_actions.py
praekeltfoundation_molo
train
f70f72c635e1a4f2215ccc7ca19fd4fcdc284a79
diff --git a/scope/scope.py b/scope/scope.py index <HASH>..<HASH> 100644 --- a/scope/scope.py +++ b/scope/scope.py @@ -78,6 +78,11 @@ class TagBase: """Method called for defining arguments for the object. Should be implemented by subclasses.""" pass + def set_children(self, children): + """Set the children of ...
Add helper function for setting children.
lrgar_scope
train
6658e643546a353a4b7e75d04a74ada4185cc6e4
diff --git a/lib/sign-up.js b/lib/sign-up.js index <HASH>..<HASH> 100644 --- a/lib/sign-up.js +++ b/lib/sign-up.js @@ -12,10 +12,14 @@ function signUp (state, options) { return Promise.reject(new Error('options.username and options.password is required')) } - state.validate(options) + try { + state.valid...
fix: signUp rejects on error, does not throw
hoodiehq_hoodie-account-client
train
822dc71eee7ec14a7b70ff204fcdfdb159737376
diff --git a/tests/test_output_format.py b/tests/test_output_format.py index <HASH>..<HASH> 100644 --- a/tests/test_output_format.py +++ b/tests/test_output_format.py @@ -153,3 +153,18 @@ def test_video(): return 'test' assert hug.output_format.avi_video(FakeVideoWithSave()) == 'test' + +def test_on...
Add test for multiple output formats based on content type
hugapi_hug
train
a8c3dce963cbcc1715b300e1bd7fe1a69f69dd0d
diff --git a/assembly/automaton.py b/assembly/automaton.py index <HASH>..<HASH> 100644 --- a/assembly/automaton.py +++ b/assembly/automaton.py @@ -71,7 +71,6 @@ def assemble_pairs(p, pf, tag): cwd = os.getcwd() os.chdir(pf) prepare([pf] + sorted(glob("*.fastq") + glob("*.fastq.gz"))) - sh("chmod u+x r...
chmod after writing "run.sh" script
tanghaibao_jcvi
train
61429b4602a644bf7c6e7272be0ecca81270bebd
diff --git a/snapshot/lib/snapshot/detect_values.rb b/snapshot/lib/snapshot/detect_values.rb index <HASH>..<HASH> 100644 --- a/snapshot/lib/snapshot/detect_values.rb +++ b/snapshot/lib/snapshot/detect_values.rb @@ -19,6 +19,10 @@ module Snapshot end end + if config[:test_without_building] == true...
[snapshot] Add test-without-building capability (#<I>) * add test-without-building capability to snapshot * add user_error when running test_without_building without derived_data_path * cosmetic changes * fix test
fastlane_fastlane
train
8a584caa8c35c5c050fa11cf7fc46f9765d7cbb6
diff --git a/pipenv/cli.py b/pipenv/cli.py index <HASH>..<HASH> 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -324,11 +324,6 @@ def ensure_pipfile(validate=True): python = which('python') if not USING_DEFAULT_PYTHON else False project.create_pipfile(python=python) - click.echo...
don't import code automatically, only use -c
pypa_pipenv
train
cf671f70974348ac202f613c6b090f05d4f2543b
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ def read_long_description(): setup(name='pi-ina219', - version='1.1.0', + version='1.2.0', author='Chris Borrill', author_email='[email protected]', description=DESC,
Increment version in preperation for release of version <I>
chrisb2_pi_ina219
train
6909c12bbd060d6ac952e63541e5ac998dd09525
diff --git a/lib/engineyard-serverside/configuration.rb b/lib/engineyard-serverside/configuration.rb index <HASH>..<HASH> 100644 --- a/lib/engineyard-serverside/configuration.rb +++ b/lib/engineyard-serverside/configuration.rb @@ -17,7 +17,7 @@ module EY def initialize(opts={}) @release_path = opts[:r...
Don't double up the config key in the config.
engineyard_engineyard-serverside
train
df208d6711981dfca866e2d8670eec46b5b3d143
diff --git a/openstack_dashboard/dashboards/project/stacks/tests.py b/openstack_dashboard/dashboards/project/stacks/tests.py index <HASH>..<HASH> 100644 --- a/openstack_dashboard/dashboards/project/stacks/tests.py +++ b/openstack_dashboard/dashboards/project/stacks/tests.py @@ -33,6 +33,7 @@ from openstack_dashboard.da...
Add missing unit tests for Heat Stacks Details We don't have tests for the Details page and tabs. Change-Id: I<I>e<I>ab<I>d1c<I>de<I>dc<I>b7af0cdd2dc<I>a Closes-Bug: #<I>
openstack_horizon
train
5112aaffdf65f19e7f3487d329a44dd8ab81737e
diff --git a/lib/puppet/pops/types/annotation.rb b/lib/puppet/pops/types/annotation.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/pops/types/annotation.rb +++ b/lib/puppet/pops/types/annotation.rb @@ -27,7 +27,7 @@ module Types def self.annotate(o) adapter = get(o) if adapter.nil? - if o.is_...
(PUP-<I>) Ensure that annotations can be used on all Annotatables An oversight in the implementation of PUP-<I> prevented annotations from being added to attributes, functions, and typesets. This commit ensures that all `Annotatables` can have annotations.
puppetlabs_puppet
train
5f1212e35b57f072cb56c0ba45d76472c996324d
diff --git a/lib/githubProcessor.js b/lib/githubProcessor.js index <HASH>..<HASH> 100644 --- a/lib/githubProcessor.js +++ b/lib/githubProcessor.js @@ -273,7 +273,7 @@ class GitHubProcessor { // to form a PR nor is the origin repo in our filter set. So, keep the commit as PR-specific. The commit itself //...
revert PR commit to collection from relation
Microsoft_ghcrawler
train
6211fce718921707a2d026cdfd67f127a581439b
diff --git a/lib/discordrb/gateway.rb b/lib/discordrb/gateway.rb index <HASH>..<HASH> 100644 --- a/lib/discordrb/gateway.rb +++ b/lib/discordrb/gateway.rb @@ -316,6 +316,13 @@ module Discordrb end end + def handle_dispatch(packet) + case packet['t'].intern + when :READY + LOGGER.info("...
Start implementing handle_dispatch Currently only logs the gateway version on READY
meew0_discordrb
train
88dac025010d6c98803c6c5fe1ad87387d4ddbbc
diff --git a/Poller.php b/Poller.php index <HASH>..<HASH> 100644 --- a/Poller.php +++ b/Poller.php @@ -27,7 +27,7 @@ use Zend\Ldap\Node\RootDse\ActiveDirectory; /** * Active Directory LDAP poller * - * TODO perform paginated requests + * TODO perform paginated requests after resolving of https://github.com/zendfra...
add ability to specify different entry filters for inc and full sync in order to (for example) allow more lightweight ldap requests for full sync
GlobalTradingTechnologies_ad-poller
train
69848be141725d82eb916b8f86720658c6abea5b
diff --git a/stats/active_apps.go b/stats/active_apps.go index <HASH>..<HASH> 100644 --- a/stats/active_apps.go +++ b/stats/active_apps.go @@ -92,7 +92,7 @@ type ActiveApps struct { func NewActiveApps() *ActiveApps { x := &ActiveApps{} - x.t = time.NewTicker(1 * time.Minute) + x.t = time.NewTicker(ActiveAppsTrimIn...
use pre-defined const value `ActiveAppsTrimInterval` for apps trim interval
cloudfoundry_gorouter
train
0601f133cbb4c4398b8e2eb3efa394fdd7e09941
diff --git a/web/ui/gulpfile.js b/web/ui/gulpfile.js index <HASH>..<HASH> 100644 --- a/web/ui/gulpfile.js +++ b/web/ui/gulpfile.js @@ -128,7 +128,7 @@ gulp.task("debug3rdparty", function(){ gulp.task("concat", function(){ return gulp.src(controlplaneFiles) .pipe(sourcemaps.init()) - .pipe(to5(...
CC-<I> Search Widget Remove search from config file table.
control-center_serviced
train
620d2c84431c6e4ecde5f6964c10a02b7dce4f47
diff --git a/src/com/mebigfatguy/fbcontrib/detect/ClassEnvy.java b/src/com/mebigfatguy/fbcontrib/detect/ClassEnvy.java index <HASH>..<HASH> 100755 --- a/src/com/mebigfatguy/fbcontrib/detect/ClassEnvy.java +++ b/src/com/mebigfatguy/fbcontrib/detect/ClassEnvy.java @@ -319,6 +319,7 @@ public class ClassEnvy extends Byteco...
ignore exception softening when there is no other way to do the job, #<I>
mebigfatguy_fb-contrib
train
1f5f3262497c6ef18ad2f8d6c8a03f00aac395e1
diff --git a/bin/sdk-cli.js b/bin/sdk-cli.js index <HASH>..<HASH> 100755 --- a/bin/sdk-cli.js +++ b/bin/sdk-cli.js @@ -47,7 +47,6 @@ yargs 'view-script': { description: 'Entry for rendered-page-side JavaScript file', type: 'string', - required: false, coerce: value => path.resolve( __dirname, '../...
SDK: Cleanup unnecessary required: false in yargs options (#<I>)
Automattic_wp-calypso
train
1672f1e21a450b715ef70eba42ac22c5de87581f
diff --git a/clients/web/test/spec/folderSpec.js b/clients/web/test/spec/folderSpec.js index <HASH>..<HASH> 100644 --- a/clients/web/test/spec/folderSpec.js +++ b/clients/web/test/spec/folderSpec.js @@ -148,6 +148,8 @@ describe('Test folder creation, editing, and deletion', function () { return Backbone.hi...
Attempt to fix race condition in web_client_folder test This is the one that's failing the most often
girder_girder
train
a4decd899c53d217b57f971b528100840c426cd1
diff --git a/pixiedust/display/chart/renderers/mapbox/mapBoxMapDisplay.py b/pixiedust/display/chart/renderers/mapbox/mapBoxMapDisplay.py index <HASH>..<HASH> 100644 --- a/pixiedust/display/chart/renderers/mapbox/mapBoxMapDisplay.py +++ b/pixiedust/display/chart/renderers/mapbox/mapBoxMapDisplay.py @@ -131,8 +131,12 @@ ...
Read custom map box layers from pixieapp when available
pixiedust_pixiedust
train
009eafb0221aab81261dc1d0da694b9c4792e28d
diff --git a/wicket-orientdb-demo/src/main/java/ru/ydn/wicket/wicketorientdb/WicketApplication.java b/wicket-orientdb-demo/src/main/java/ru/ydn/wicket/wicketorientdb/WicketApplication.java index <HASH>..<HASH> 100644 --- a/wicket-orientdb-demo/src/main/java/ru/ydn/wicket/wicketorientdb/WicketApplication.java +++ b/wick...
Fix problem in demo app with default username and password
OrienteerBAP_wicket-orientdb
train
cbec30d4dee8cdbe726e38291b30e6d9477b1612
diff --git a/mod/assign/locallib.php b/mod/assign/locallib.php index <HASH>..<HASH> 100644 --- a/mod/assign/locallib.php +++ b/mod/assign/locallib.php @@ -5417,8 +5417,12 @@ class assign { $user = $DB->get_record('user', array('id' => $submission->userid), '*', MUST_EXIST); $name = fullname($u...
MDL-<I> Assign: Fix when submitting to a group assignment from the default group
moodle_moodle
train
1aa6228ebb0cae2d67150dffc5898e528ad58379
diff --git a/adminrestrict/test_settings.py b/adminrestrict/test_settings.py index <HASH>..<HASH> 100644 --- a/adminrestrict/test_settings.py +++ b/adminrestrict/test_settings.py @@ -42,13 +42,7 @@ MIDDLEWARE_CLASSES = ( 'adminrestrict.middleware.AdminPagesRestrictMiddleware' ) -if django.VERSION[0] >= 2: - ...
set MIDDLEWARE = MIDDLEWARE_CLASSES
robromano_django-adminrestrict
train
57acd59b456f5eb86d44816ef9c6821758688ea0
diff --git a/rstcheck/__init__.py b/rstcheck/__init__.py index <HASH>..<HASH> 100755 --- a/rstcheck/__init__.py +++ b/rstcheck/__init__.py @@ -23,8 +23,6 @@ # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """Checks code blocks in reStructuredText.""" - - import argparse import configparser import contex...
remove blank line between module docstr and imports
myint_rstcheck
train
378b3d44efc7ae222b53067d9d00a4a1a53d9707
diff --git a/spec/deprecation_spec.rb b/spec/deprecation_spec.rb index <HASH>..<HASH> 100644 --- a/spec/deprecation_spec.rb +++ b/spec/deprecation_spec.rb @@ -19,7 +19,7 @@ describe EY::Serverside do end it "preserves the old constants" do - names = %w[BundleInstaller CLI Deploy DeployBase Deploy::Configurat...
Don't mention BundleInstaller in deprecation warnings, it's gone now.
engineyard_engineyard-serverside
train
0f19abd3443e3732ee02fa1659589b77660ce609
diff --git a/lib/datasource/maven/util.js b/lib/datasource/maven/util.js index <HASH>..<HASH> 100644 --- a/lib/datasource/maven/util.js +++ b/lib/datasource/maven/util.js @@ -5,8 +5,13 @@ module.exports = { downloadHttpProtocol, }; +/** + * @param {import('url').URL | string} pkgUrl + */ function isMavenCentral(...
fix(maven): pkgUrl can be string (#<I>) Indirect used by `downloadHttpProtocol` from sbt datasource
renovatebot_renovate
train
e1afddff09db927ab2256b68229a33ce18ddddc0
diff --git a/src/frontend/org/voltcore/zk/LeaderElector.java b/src/frontend/org/voltcore/zk/LeaderElector.java index <HASH>..<HASH> 100644 --- a/src/frontend/org/voltcore/zk/LeaderElector.java +++ b/src/frontend/org/voltcore/zk/LeaderElector.java @@ -118,8 +118,8 @@ public class LeaderElector { protected void ...
Use Cancallable watcher for election event handler as well.
VoltDB_voltdb
train
9e3e35ac727fdc2703afe3a6e1b4421a591e1504
diff --git a/cluster/image.go b/cluster/image.go index <HASH>..<HASH> 100644 --- a/cluster/image.go +++ b/cluster/image.go @@ -1,10 +1,11 @@ -// Copyright 2015 docker-cluster authors. All rights reserved. +// Copyright 2016 docker-cluster authors. All rights reserved. // Use of this source code is governed by a BSD-st...
cluster/image: remove image from registry v2. Related to tsuru/tsuru#<I>
tsuru_docker-cluster
train
bf4463d84090ba1e0303db8336dd47ee91ddc2f8
diff --git a/examples/ex5.rb b/examples/ex5.rb index <HASH>..<HASH> 100644 --- a/examples/ex5.rb +++ b/examples/ex5.rb @@ -1,5 +1,5 @@ (wav = WavIn.new("ex1.wav")) >> WavOut.new("ex5.wav") >> blackhole -play 0.5.seconds # silence +wav.stop; play 0.5.seconds # silence wav.play; play 1.second ...
Updated example to reflect API change: WavIn starts unpaused
alltom_ruck
train
f69623ed427ad4406461db9cdb4ada15a1541f0e
diff --git a/checkers/misc.py b/checkers/misc.py index <HASH>..<HASH> 100644 --- a/checkers/misc.py +++ b/checkers/misc.py @@ -57,13 +57,13 @@ separated by a comma.' def _check_note(self, notes, lineno, line): match = notes.search(line) if match: - self.add_message('W0511', args=line[m...
Only emit symbolic warnings from the misc checker.
PyCQA_pylint
train
c0687cd5fa118d807f1a7593abc5abbdfbe764f4
diff --git a/src/Symfony/Component/Routing/RouteCollection.php b/src/Symfony/Component/Routing/RouteCollection.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/Routing/RouteCollection.php +++ b/src/Symfony/Component/Routing/RouteCollection.php @@ -163,7 +163,10 @@ class RouteCollection implements \IteratorAg...
remove() should not use deprecated getParent() so it does not trigger deprecation internally
symfony_symfony
train