hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
64b2fc0b13a1c78c08bf63043b5b5c0163c3ae5b
diff --git a/slick.editors.js b/slick.editors.js index <HASH>..<HASH> 100644 --- a/slick.editors.js +++ b/slick.editors.js @@ -78,6 +78,13 @@ var SlickEditor = { } $input.appendTo($container); + + $input.bind("keydown.nav", function(e) { + if (e.keyCode === $.ui.ke...
FIXED: Issue <I> - Can't use left & right arrow keys in cell editors Sample text cell editors now control which keys should not be propagated.
coatue-oss_slickgrid2
train
59fa666640935ade681c761c2a97991f9578e3f1
diff --git a/trollimage/colormap.py b/trollimage/colormap.py index <HASH>..<HASH> 100644 --- a/trollimage/colormap.py +++ b/trollimage/colormap.py @@ -218,11 +218,15 @@ class Colormap(object): return palettize(data, self.colors, self.values) def to_rgb(self): - """Return new colormap with RGB col...
Add pass through to to_rgb/to_rgba to avoid unnecessary copies
pytroll_trollimage
train
41aee395c9e78540ef843473fea763a455bd01c6
diff --git a/cloudinary_storage/management/commands/deleteredundantstatic.py b/cloudinary_storage/management/commands/deleteredundantstatic.py index <HASH>..<HASH> 100644 --- a/cloudinary_storage/management/commands/deleteredundantstatic.py +++ b/cloudinary_storage/management/commands/deleteredundantstatic.py @@ -13,13...
Replaced --delete-unhashed-files option with --keep-unhashed-files
klis87_django-cloudinary-storage
train
5f6aafcbaa97f330ad2007f4ad02c5e33db8914b
diff --git a/src/main/java/io/reactivex/rxjava3/internal/operators/flowable/FlowableGroupBy.java b/src/main/java/io/reactivex/rxjava3/internal/operators/flowable/FlowableGroupBy.java index <HASH>..<HASH> 100644 --- a/src/main/java/io/reactivex/rxjava3/internal/operators/flowable/FlowableGroupBy.java +++ b/src/main/java...
3.x: Fix groupBy not requesting more if a group is cancelled w/ items (#<I>)
ReactiveX_RxJava
train
0ce2079ee8c52b4903638fdeae21ed37f3c5ce1f
diff --git a/src/mako/session/handlers/Redis.php b/src/mako/session/handlers/Redis.php index <HASH>..<HASH> 100644 --- a/src/mako/session/handlers/Redis.php +++ b/src/mako/session/handlers/Redis.php @@ -106,9 +106,7 @@ class Redis implements \SessionHandlerInterface public function write($sessionId, $data) { - $...
Use redis setex instead of two commands
mako-framework_framework
train
5f218128e83c8426f2bec0cf09ceb85082a74e27
diff --git a/dev/com.ibm.ws.microprofile.rest.client_fat/fat/src/com/ibm/ws/microprofile/rest/client/fat/BasicTest.java b/dev/com.ibm.ws.microprofile.rest.client_fat/fat/src/com/ibm/ws/microprofile/rest/client/fat/BasicTest.java index <HASH>..<HASH> 100644 --- a/dev/com.ibm.ws.microprofile.rest.client_fat/fat/src/com/i...
Test fix: ensure builder timeout is reset after test that changes it.
OpenLiberty_open-liberty
train
936d97148364f118446e222e589a40a74d85d423
diff --git a/lib/_wpilib/SmartDashboard.py b/lib/_wpilib/SmartDashboard.py index <HASH>..<HASH> 100644 --- a/lib/_wpilib/SmartDashboard.py +++ b/lib/_wpilib/SmartDashboard.py @@ -1,3 +1,8 @@ +''' + Simple + dumb implementations of SmartDashboard related objects. If you + want a full implementation, install pynetw...
Added more SmartDashboard shims
robotpy_pyfrc
train
dfe110aa7d6a7d78475f557def9ad1b26e635eae
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -46,7 +46,7 @@ function processArgv(options) { : argv; var res = {}; - res.argv = utils.extend({}, argv); + res.orig = utils.extend({}, argv); res._ = []; res.tasks = []; res.commands = {}; d...
change `argv` property to `orig`
base_base-argv
train
6282cdf615fd83c4b437be22ebf5928f5dd9d09b
diff --git a/src/Query.php b/src/Query.php index <HASH>..<HASH> 100755 --- a/src/Query.php +++ b/src/Query.php @@ -162,7 +162,7 @@ class Query * Query constructor. * @param $connection */ - function __construct($connection) + function __construct($connection = NULL) { $this->connec...
set default query constructor connection to null
basemkhirat_elasticsearch
train
a96e5aa272d4741eaa8bc3f4f6000b08b7fc2782
diff --git a/ftpconn.go b/ftpconn.go index <HASH>..<HASH> 100644 --- a/ftpconn.go +++ b/ftpconn.go @@ -2,7 +2,11 @@ package graval import ( "bufio" + "crypto/rand" + "crypto/sha256" + "encoding/hex" "fmt" + "io" "net" "path/filepath" "strconv" @@ -20,6 +24,7 @@ type ftpConn struct { dataConn ftpData...
generate a uniq session ID for each connection
goftp_server
train
dd892d454584f25d7fcfead5dbef9cd0379e9dc4
diff --git a/rcli/dispatcher.py b/rcli/dispatcher.py index <HASH>..<HASH> 100644 --- a/rcli/dispatcher.py +++ b/rcli/dispatcher.py @@ -195,14 +195,6 @@ def _run_command(argv): Command functions are expected to have a __doc__ string that is parseable by docopt. - If the function object has a 'validate' at...
Remove references to old validation methods in docstrings.
contains-io_rcli
train
cb9858a6b6c999d6d4a5f26c1d80fda216971798
diff --git a/src/Client.php b/src/Client.php index <HASH>..<HASH> 100644 --- a/src/Client.php +++ b/src/Client.php @@ -19,6 +19,13 @@ class Client protected $client = null; /** + * URL path. + * + * @var string + */ + protected $path = '/'; + + /** * JSON-RPC Id. * * ...
Added ability to use multi-wallet calls. closes #<I>
denpamusic_php-bitcoinrpc
train
0a6695dc18be02bbffa81a3790e15a77fe11348c
diff --git a/firefox/src/java/org/openqa/selenium/firefox/FirefoxProfile.java b/firefox/src/java/org/openqa/selenium/firefox/FirefoxProfile.java index <HASH>..<HASH> 100644 --- a/firefox/src/java/org/openqa/selenium/firefox/FirefoxProfile.java +++ b/firefox/src/java/org/openqa/selenium/firefox/FirefoxProfile.java @@ -3...
EranMes: Allowing over-ride of the homepage also on Firefox <I>. r<I>
SeleniumHQ_selenium
train
7e93e3a2a78838e7191537fbba405e0c154a0900
diff --git a/CHANGES b/CHANGES index <HASH>..<HASH> 100644 --- a/CHANGES +++ b/CHANGES @@ -3,6 +3,7 @@ Changelog 0.3.0.dev --------- +- **Backward incompatible change:** The ``hana://`` DBURI schema will now use ``hdbcli`` by default. - Support of Python 3 0.2.2 diff --git a/setup.py b/setup.py index <HASH>..<H...
Use hdbcli as driver for hana:// schema by default
SAP_sqlalchemy-hana
train
b6f16775af80569807371604f37d76f7897bfa0b
diff --git a/src/main/java/com/beust/jcommander/JCommander.java b/src/main/java/com/beust/jcommander/JCommander.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/beust/jcommander/JCommander.java +++ b/src/main/java/com/beust/jcommander/JCommander.java @@ -1059,7 +1059,7 @@ public class JCommander { // If co...
Fix indentation for nested sub-commands.
cbeust_jcommander
train
4a7ab89d317da8884e03245467291d64d2b2e2f6
diff --git a/emma2/msm/estimation/api.py b/emma2/msm/estimation/api.py index <HASH>..<HASH> 100644 --- a/emma2/msm/estimation/api.py +++ b/emma2/msm/estimation/api.py @@ -10,9 +10,6 @@ from scipy.sparse.sputils import isdense __all__=['count_matrix', 'cmatrix', 'connected_sets', 'largest_connected_set',\ ...
moved module wide exception back to functions which raises
markovmodel_PyEMMA
train
2bdfa1a48e97bb97c23717af40ae9c08e7f41cac
diff --git a/test/fixtures/models/roles_users.yml b/test/fixtures/models/roles_users.yml index <HASH>..<HASH> 100644 --- a/test/fixtures/models/roles_users.yml +++ b/test/fixtures/models/roles_users.yml @@ -1,3 +1,7 @@ administrator_admin: role: administrator user: admin + +admin_own_role_admin: + role: adm...
migrating user tests to minitest
Katello_katello
train
218dc7532bccd15262d06df09b86f9fcbaaa732b
diff --git a/mod/quiz/import.php b/mod/quiz/import.php index <HASH>..<HASH> 100644 --- a/mod/quiz/import.php +++ b/mod/quiz/import.php @@ -5,6 +5,7 @@ require_once("locallib.php"); $category = required_param('category', PARAM_INT); + $format = optional_param('format','',PARAM_CLEANFILE); if (! $ca...
data_submitted() replaced with appropriate _param() style functions, HTML output tidied up and sesskey checking added.
moodle_moodle
train
48e9d18d6ab016bd88d2af46f167441a037682dd
diff --git a/mbuild/tests/test_packing.py b/mbuild/tests/test_packing.py index <HASH>..<HASH> 100755 --- a/mbuild/tests/test_packing.py +++ b/mbuild/tests/test_packing.py @@ -32,12 +32,11 @@ class TestPacking(BaseTest): assert solvated.n_particles == 8 + n_solvent * 3 assert solvated.n_bonds == 7 + n_...
Make it look like I know how to merge
mosdef-hub_mbuild
train
767c995ef3839e33f3eaee4e3961463514010d13
diff --git a/openquake/logs.py b/openquake/logs.py index <HASH>..<HASH> 100644 --- a/openquake/logs.py +++ b/openquake/logs.py @@ -142,25 +142,6 @@ class AMQPHandler(logging.Handler): # pylint: disable=R0902 :param level: logging level """ - # mimic Log4j MDC - MDC = dict() - """ - A dictionary...
don't mimic MDC in AMQPHandler
gem_oq-engine
train
2c5c9e95e14962992afce5aa083a8b5477e31a94
diff --git a/src/Psalm/Internal/Analyzer/CommentAnalyzer.php b/src/Psalm/Internal/Analyzer/CommentAnalyzer.php index <HASH>..<HASH> 100644 --- a/src/Psalm/Internal/Analyzer/CommentAnalyzer.php +++ b/src/Psalm/Internal/Analyzer/CommentAnalyzer.php @@ -928,6 +928,8 @@ class CommentAnalyzer $is_static =...
Don’t add two @return docblocks after @method
vimeo_psalm
train
41840a73cc5ff4c00dc1d83cb32860cab9383594
diff --git a/src/Adapter/Filesystem.php b/src/Adapter/Filesystem.php index <HASH>..<HASH> 100644 --- a/src/Adapter/Filesystem.php +++ b/src/Adapter/Filesystem.php @@ -120,7 +120,8 @@ final class Filesystem implements Adapter $path = $path->resolve(Path::of($name)); - if ($file instanceof Source && !...
rename Source::shouldBePersistedAt to Source::sourcedAt to ease understanding
Innmind_Filesystem
train
3a09c41ef9db14a02d06cada18d79130452bed29
diff --git a/session.go b/session.go index <HASH>..<HASH> 100644 --- a/session.go +++ b/session.go @@ -7,6 +7,7 @@ package geddit import ( "encoding/json" "fmt" + "github.com/google/go-querystring/query" "image" "image/png" "net/url" @@ -57,13 +58,12 @@ func (s Session) DefaultFrontpage() ([]*Submission, err...
added ListingOptions type to replace params map on SortedSubmissions
jzelinskie_geddit
train
2cd6156455bc1bba7fe63e5fca1271a7c91eb038
diff --git a/lib/qipowl/bowlers/html.rb b/lib/qipowl/bowlers/html.rb index <HASH>..<HASH> 100644 --- a/lib/qipowl/bowlers/html.rb +++ b/lib/qipowl/bowlers/html.rb @@ -380,12 +380,8 @@ module Qipowl # @return [Array] the array of words def special_handler method, *args, &block # Sublevel markers, e.g. “...
Aliasing nested methods is moved to Mapping.
mudasobwa_qipowl
train
a3d3ca57f5e2315bb88c4f09a97e43c9bb732bc7
diff --git a/canvas.py b/canvas.py index <HASH>..<HASH> 100644 --- a/canvas.py +++ b/canvas.py @@ -1,6 +1,5 @@ -from pycanvas import Requester -from pycanvas import Course -from pycanvas import util +from pycanvas import Course, Requester +from pycanvas.util import combine_kwargs class Canvas(object): @@ -23,13 +2...
Condensed passing kwargs. Added users method to course
ucfopen_canvasapi
train
dab9cece06c7944ddc6b5a63176ebb08deb0b51b
diff --git a/src/JaztecBase/Mapper/AbstractDoctrineMapper.php b/src/JaztecBase/Mapper/AbstractDoctrineMapper.php index <HASH>..<HASH> 100644 --- a/src/JaztecBase/Mapper/AbstractDoctrineMapper.php +++ b/src/JaztecBase/Mapper/AbstractDoctrineMapper.php @@ -102,4 +102,15 @@ abstract class AbstractDoctrineMapper extends Ab...
Shortcut function to remove entities from the database.
jaztec_jaztec-base
train
ae00cf50ea8741ec10b366e86344617a656ac2fb
diff --git a/config/initializers/redis.rb b/config/initializers/redis.rb index <HASH>..<HASH> 100644 --- a/config/initializers/redis.rb +++ b/config/initializers/redis.rb @@ -1,14 +1,12 @@ -port = Toxiproxy.running? ? 22220 : 6379 - -if Rails.env.test? && Toxiproxy.running? - Toxiproxy.populate([{ - name: "redis", ...
fix toxiproxy initializer toxiproxy isn’t loaded in production so we shouldn’t try to use it
rubygems_rubygems.org
train
894b5ffb5c3a9c741dbe98b9b8fa0c1774cb1869
diff --git a/src/core/collection.js b/src/core/collection.js index <HASH>..<HASH> 100644 --- a/src/core/collection.js +++ b/src/core/collection.js @@ -38,8 +38,6 @@ function extractTyranidQueryOptions(opts) { return tyrOpts; } -let patchedCursorConnect; - // Document // ======== @@ -483,21 +481,15 @@ export d...
undo single patch, as it only calls secure query for the first collection which calls find()
tyranid-org_tyranid
train
a37ab00b344e035adbdc532f2760c223db118c0f
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -52,7 +52,6 @@ setup( 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', - 'Programming Language :: Python :: 2', 'Progr...
Remove Python 2 from PyPI classifiers
miguelgrinberg_python-socketio
train
332770d3a896ee4b24a942b0bfc822d7872c5aed
diff --git a/tests/v6/test_custom_generator.py b/tests/v6/test_custom_generator.py index <HASH>..<HASH> 100644 --- a/tests/v6/test_custom_generator.py +++ b/tests/v6/test_custom_generator.py @@ -1,8 +1,8 @@ +import datetime as dt import pandas as pd -import pytest from .context import tohu -from tohu.v6.primitive_g...
Fix re-wiring of clones inside a custom generator
maxalbert_tohu
train
8c326024f43447de8ec56081c528bb421801f6e1
diff --git a/PySimpleGUI.py b/PySimpleGUI.py index <HASH>..<HASH> 100644 --- a/PySimpleGUI.py +++ b/PySimpleGUI.py @@ -1171,7 +1171,7 @@ class Output(Element): # Button Class # # ---------------------------------------------------------------------- # class B...
Button no longer closes the Window!!
PySimpleGUI_PySimpleGUI
train
fac1830d5746f3205c7b8147f7412410e8eb95bd
diff --git a/library/CM/Site/Abstract.php b/library/CM/Site/Abstract.php index <HASH>..<HASH> 100644 --- a/library/CM/Site/Abstract.php +++ b/library/CM/Site/Abstract.php @@ -1,5 +1,7 @@ <?php +use CM\Url\BaseUrl; + abstract class CM_Site_Abstract extends CM_Class_Abstract implements CM_ArrayConvertible, CM_Typed, ...
Return BaseUrl from CM_Site_Abstract::getUrl*()
cargomedia_cm
train
96c5175712ff0065cef0309c5baa1c623f8c3100
diff --git a/tasks/git.js b/tasks/git.js index <HASH>..<HASH> 100644 --- a/tasks/git.js +++ b/tasks/git.js @@ -11,8 +11,9 @@ var commands = require('../lib/commands'); module.exports = function (grunt) { - function exec(task) { + function exec() { var args = Array.prototype.slice.call(arguments); + ...
i'll leave it like this.
rubenv_grunt-git
train
0a88074dd7d3a25e920a01808fd1296d5fb14af1
diff --git a/tests/BuildCommandTest.php b/tests/BuildCommandTest.php index <HASH>..<HASH> 100644 --- a/tests/BuildCommandTest.php +++ b/tests/BuildCommandTest.php @@ -128,6 +128,10 @@ class BuildCommandTest extends CommandTestBase $this->assertEquals(1, $output->getStatusCode()); } + /** + * Writ...
:bug: fixed ignore functionality for #<I>, needs copy functionality fixing
tapestry-cloud_tapestry
train
83ca558534f7df07134c62c369119f44222ca865
diff --git a/parser/gotest/report_builder.go b/parser/gotest/report_builder.go index <HASH>..<HASH> 100644 --- a/parser/gotest/report_builder.go +++ b/parser/gotest/report_builder.go @@ -108,12 +108,13 @@ func (b *reportBuilder) Build() gtr.Report { // CreateTest adds a test with the given name to the report, and ma...
parser/gotest: Return created id from CreateTest method
jstemmer_go-junit-report
train
9ec406252add1b64530c0ee6dc4628aa7fefae31
diff --git a/pypsa/networkclustering.py b/pypsa/networkclustering.py index <HASH>..<HASH> 100644 --- a/pypsa/networkclustering.py +++ b/pypsa/networkclustering.py @@ -73,7 +73,8 @@ def aggregategenerators(network, busmap, with_time=True, carriers=None): weighting = generators.weight.groupby(grouper, axis=0).tran...
networkclustering: Add strategy for weighted clustering of capital_cost
PyPSA_PyPSA
train
06d814364a860512f0b76ae3ca32aad801d73264
diff --git a/pymatgen/analysis/defects/corrections.py b/pymatgen/analysis/defects/corrections.py index <HASH>..<HASH> 100644 --- a/pymatgen/analysis/defects/corrections.py +++ b/pymatgen/analysis/defects/corrections.py @@ -78,7 +78,7 @@ class FreysoldtCorrection(DefectCorrection): list_bulk_plnr_avg_es...
change core and corrections for defect to account for scaling_matrix in parameters of DefectEntry
materialsproject_pymatgen
train
5ec2a7b82cf1819b5e465c4c91f303ca75561e71
diff --git a/src/server/bundle-renderer/create-bundle-runner.js b/src/server/bundle-renderer/create-bundle-runner.js index <HASH>..<HASH> 100644 --- a/src/server/bundle-renderer/create-bundle-runner.js +++ b/src/server/bundle-renderer/create-bundle-runner.js @@ -1,3 +1,5 @@ +import { isObject } from 'shared/util' + co...
handle new component-lifecycle-based style injection strategy
IOriens_wxml-transpiler
train
f0ab9a127bdff88d55dd9e25211ad6327d7ef431
diff --git a/src/main/java/org/fit/layout/classify/taggers/PersonsTagger.java b/src/main/java/org/fit/layout/classify/taggers/PersonsTagger.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/fit/layout/classify/taggers/PersonsTagger.java +++ b/src/main/java/org/fit/layout/classify/taggers/PersonsTagger.java @@ -2...
Approximate personal name matching as a fallback to NER
FitLayout_classify
train
5bac23bfdbbdecdffc8a2399e62539f916d3c646
diff --git a/jaxrs/src/main/java/org/jboss/as/jaxrs/deployment/JaxrsDeploymentMarker.java b/jaxrs/src/main/java/org/jboss/as/jaxrs/deployment/JaxrsDeploymentMarker.java index <HASH>..<HASH> 100644 --- a/jaxrs/src/main/java/org/jboss/as/jaxrs/deployment/JaxrsDeploymentMarker.java +++ b/jaxrs/src/main/java/org/jboss/as/j...
[WFLY-<I>] Suppress WFLY-<I> warning for EAR sub-deployments
wildfly_wildfly
train
7066976a8e60d4ced6217b60082ca4c594f8c17d
diff --git a/arch/zx48k/optimizer/cpustate.py b/arch/zx48k/optimizer/cpustate.py index <HASH>..<HASH> 100644 --- a/arch/zx48k/optimizer/cpustate.py +++ b/arch/zx48k/optimizer/cpustate.py @@ -189,7 +189,6 @@ class CPUState(object): old_idx = '%s%+i' % (r, offset + i) self.mem[idx] = new...
Add more test to cpustate Adds extra test which test for crash bug on False assertion on '0|<unknown>' not being taken as an unknown<I>. Also adds extra test for cpu state reset (memory is cleaned).
boriel_zxbasic
train
95b1919f0d8066137ed8a8f88ee6c1fde9ee479b
diff --git a/scss/__init__.py b/scss/__init__.py index <HASH>..<HASH> 100644 --- a/scss/__init__.py +++ b/scss/__init__.py @@ -863,7 +863,10 @@ class Scss(object): m_vars = mixin[1].copy() m_codestr = mixin[2] for varname, value in new_params.items(): - m_param = m_params.get(varna...
Whoops; list.get() is nonsense.
Kronuz_pyScss
train
cd81af0cb2068daae973a534de1bbbd084306235
diff --git a/example/myapp/middleware/core.io-auth/index.js b/example/myapp/middleware/core.io-auth/index.js index <HASH>..<HASH> 100644 --- a/example/myapp/middleware/core.io-auth/index.js +++ b/example/myapp/middleware/core.io-auth/index.js @@ -1,3 +1,4 @@ +/*jshint esversion:6, node:true*/ 'use strict'; const ex...
core.io-auth: clean up, prepare for refactoring
goliatone_core.io-express-server
train
f628ac293f9545a31086c36ebb2f2b3eab09fff4
diff --git a/pelix/http/__init__.py b/pelix/http/__init__.py index <HASH>..<HASH> 100644 --- a/pelix/http/__init__.py +++ b/pelix/http/__init__.py @@ -129,6 +129,13 @@ class AbstractHTTPServletRequest(object): """ Abstract HTTP Servlet request helper """ + def get_command(self): + """ + ...
Added a get_command() method to HTTPServletRequest It returns the HTTP verb used for the request (GET, POST, ...)
tcalmant_ipopo
train
37cd99a391941076e6ea43e75e28b3199944e24d
diff --git a/org.opencompare/play-app/public/javascripts/controllers/pcm-editor-controller.js b/org.opencompare/play-app/public/javascripts/controllers/pcm-editor-controller.js index <HASH>..<HASH> 100644 --- a/org.opencompare/play-app/public/javascripts/controllers/pcm-editor-controller.js +++ b/org.opencompare/play-a...
Undo/Redo for add/remove product
OpenCompare_OpenCompare
train
a22479705fb39e897a95a3e0beb5f18b9b24fb51
diff --git a/src/chart/sankey/SankeyView.js b/src/chart/sankey/SankeyView.js index <HASH>..<HASH> 100644 --- a/src/chart/sankey/SankeyView.js +++ b/src/chart/sankey/SankeyView.js @@ -111,6 +111,8 @@ export default echarts.extendChartView({ */ _focusAdjacencyDisabled: false, + _focusState: false, + ...
fix graph frequent flashing with hovering on the node and edge
apache_incubator-echarts
train
1d3be707659b84479796427e29bc1a184048dfae
diff --git a/lib/share_progress/button.rb b/lib/share_progress/button.rb index <HASH>..<HASH> 100644 --- a/lib/share_progress/button.rb +++ b/lib/share_progress/button.rb @@ -7,8 +7,8 @@ require 'share_progress/variant_collection' module ShareProgress class Button - attr_accessor :page_url, :page_title, :butto...
basic validation of variant.button to avoid errors on save
SumOfUs_share_progress
train
3498d9c9ed1511d5236c08e8354879d2751ddd5e
diff --git a/perception/webcam_sensor.py b/perception/webcam_sensor.py index <HASH>..<HASH> 100644 --- a/perception/webcam_sensor.py +++ b/perception/webcam_sensor.py @@ -1,10 +1,7 @@ import cv2 import logging import numpy as np -import time import subprocess -import v4l2capture -import select from . import Came...
Fix broken deps in webcam sensor
BerkeleyAutomation_perception
train
b6e7e7140160be1a1d81179705ec5c7a6ab6f22c
diff --git a/lib/dialect/postgres.js b/lib/dialect/postgres.js index <HASH>..<HASH> 100644 --- a/lib/dialect/postgres.js +++ b/lib/dialect/postgres.js @@ -702,11 +702,11 @@ Postgres.prototype.visitColumn = function(columnNode) { var inSelectClause = this.visitingReturning || (!this._selectOrDeleteEndInde...
jshint: Bad line breaking before '&&'
brianc_node-sql
train
85d18f51e95e497a02cbb5fff36fd28cea062ff8
diff --git a/nhlib/calc/gmf.py b/nhlib/calc/gmf.py index <HASH>..<HASH> 100644 --- a/nhlib/calc/gmf.py +++ b/nhlib/calc/gmf.py @@ -57,14 +57,23 @@ def ground_motion_fields(rupture, sites, imts, gsim, truncation_level, total_sites = len(sites) [(rupture, sites)] = ruptures_sites + sctx, rctx, dctx = gsim....
calc/gmf: added support of zero truncation
gem_oq-engine
train
133c33cbcaa330953d6283865153f3dfdc7a2e45
diff --git a/eZ/Publish/Core/Limitation/ObjectStateLimitationType.php b/eZ/Publish/Core/Limitation/ObjectStateLimitationType.php index <HASH>..<HASH> 100644 --- a/eZ/Publish/Core/Limitation/ObjectStateLimitationType.php +++ b/eZ/Publish/Core/Limitation/ObjectStateLimitationType.php @@ -129,7 +129,7 @@ class ObjectState...
Merge pull request from GHSA-5x4f-7xgq-r<I>x * IBX-<I>: Fixed evaluating Root Location in ObjectStateLimitationType * IBX-<I>: [Tests] Added test coverage for Non-Root Location
ezsystems_ezpublish-kernel
train
75482d6803efc6aad439455ff6393e13bed7d406
diff --git a/src/ploneintranet/workspace/workspacefolder.py b/src/ploneintranet/workspace/workspacefolder.py index <HASH>..<HASH> 100644 --- a/src/ploneintranet/workspace/workspacefolder.py +++ b/src/ploneintranet/workspace/workspacefolder.py @@ -66,3 +66,12 @@ class WorkspaceFolder(Container): new_policy = va...
added ploneintranet.attachments support
ploneintranet_ploneintranet.workspace
train
8347ef8fb6a72f9c8f0c221be5f7619517f8dd89
diff --git a/core/src/main/java/org/bitcoinj/core/Peer.java b/core/src/main/java/org/bitcoinj/core/Peer.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/org/bitcoinj/core/Peer.java +++ b/core/src/main/java/org/bitcoinj/core/Peer.java @@ -797,7 +797,7 @@ public class Peer extends PeerSocketHandler { lo...
Peer: reorder downloadDependenciesInternal() parameters so the transaction is first This more closely matches downloadDependencies and makes it easier to spot which parameters were added to the “internal” version.
bitcoinj_bitcoinj
train
2ca448768e55a3b7e6c1235025cf9a09317fa496
diff --git a/src/main/java/com/codeborne/selenide/SelenideDriver.java b/src/main/java/com/codeborne/selenide/SelenideDriver.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/codeborne/selenide/SelenideDriver.java +++ b/src/main/java/com/codeborne/selenide/SelenideDriver.java @@ -49,6 +49,17 @@ public class Selen...
#<I> restore the previous constructor for backward compatibility
selenide_selenide
train
b36b6eb1650d12d67978db36dc2be97938f0622f
diff --git a/test/mocks/MockAppender.js b/test/mocks/MockAppender.js index <HASH>..<HASH> 100644 --- a/test/mocks/MockAppender.js +++ b/test/mocks/MockAppender.js @@ -6,14 +6,24 @@ */ var MockAppender = function() { 'use strict'; - + var Logger = require('../lib/Logger' ); + var level = Logger.DEFAULT_LE...
(tests): Add levels and setLevel to MockAppender
darrylwest_simple-node-logger
train
5eab98f9909e9e08fac66eb83c5b5872c3e72c17
diff --git a/shared/api/network_acl.go b/shared/api/network_acl.go index <HASH>..<HASH> 100644 --- a/shared/api/network_acl.go +++ b/shared/api/network_acl.go @@ -3,18 +3,51 @@ package api import "strings" // NetworkACLRule represents a single rule in an ACL ruleset. +// Refer to doc/network-acls.md for details. +/...
shared/api: Label Network ACLs structs
lxc_lxd
train
fbd948210fc2d88e801c09179c8e985423f59da7
diff --git a/lib/gemsmith.rb b/lib/gemsmith.rb index <HASH>..<HASH> 100644 --- a/lib/gemsmith.rb +++ b/lib/gemsmith.rb @@ -2,8 +2,6 @@ require "gemsmith/identity" require "gemsmith/git" -require "gemsmith/authenticators/basic" -require "gemsmith/authenticators/ruby_gems" require "gemsmith/credentials" require "ge...
Fixed Open SSL namespace issues. - Was getting the following error due to the `Authenticators` module not being properly namespaced: NameError: uninitialized constant Gemsmith::Authenticators::RubyGems::OpenSSL - This was due to the loading/requiring of the `Authenticators` modules within the context of Rak...
bkuhlmann_gemsmith
train
86e7c60c452f82b9e7e4f1c2f52ac697ef77993a
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ All notable changes to this project will be documented in this file. This change log adheres to [keepachangelog.com](http://keepachangelog.com). ## [Unreleased] +### Fixed +- Camelize `params` ...
Camelize params keys as camlize option
increments_js_rails_routes
train
4d633c911f3d6c5da4224e6ef303767c06ebaf8f
diff --git a/tests/Converter/Code/Loops/ForeachStmt/SimpleForeachTest.php b/tests/Converter/Code/Loops/ForeachStmt/SimpleForeachTest.php index <HASH>..<HASH> 100644 --- a/tests/Converter/Code/Loops/ForeachStmt/SimpleForeachTest.php +++ b/tests/Converter/Code/Loops/ForeachStmt/SimpleForeachTest.php @@ -17,9 +17,11 @@ cl...
Change test due to #phalcon\zephir#<I>
fezfez_php-to-zephir
train
999e769d29ee0c01438cc97d10989c9650b10be4
diff --git a/config/config.go b/config/config.go index <HASH>..<HASH> 100644 --- a/config/config.go +++ b/config/config.go @@ -133,14 +133,14 @@ func BuildDefaultPushConf() ConfYaml { // Android conf.Android.Enabled = false conf.Android.APIKey = "" - conf.Android.MaxRetry = 1 + conf.Android.MaxRetry = 0 // iO...
Change defual retry to zero
appleboy_gorush
train
c06143a5db6741ded9a2c2ca05183c0b839cefe8
diff --git a/disqusapi/__init__.py b/disqusapi/__init__.py index <HASH>..<HASH> 100644 --- a/disqusapi/__init__.py +++ b/disqusapi/__init__.py @@ -21,7 +21,9 @@ import uuid import warnings from disqusapi.paginator import Paginator -from disqusapi.utils import get_normalized_request_string, get_mac_signature, get_bo...
Bugfix for signature and thread:link errors
disqus_disqus-python
train
2c9c526023802bbdc17678311ed693478cc50c35
diff --git a/redis.go b/redis.go index <HASH>..<HASH> 100644 --- a/redis.go +++ b/redis.go @@ -316,6 +316,8 @@ func (c *baseClient) withConn( select { case <-done: _ = cn.Close() + // Wait for the goroutine to finish and send something. + <-errc err = ctx.Err() return err
Wait for the goroutine to finish
go-redis_redis
train
fe2a275c5d8059a8e4a014dbe5840e265fbf3d9c
diff --git a/src/FuelPHP/Fieldset/Input/Checkbox.php b/src/FuelPHP/Fieldset/Input/Checkbox.php index <HASH>..<HASH> 100644 --- a/src/FuelPHP/Fieldset/Input/Checkbox.php +++ b/src/FuelPHP/Fieldset/Input/Checkbox.php @@ -3,7 +3,7 @@ /** * Part of the FuelPHP framework. * - * @package FuelPHP\Fieldset + * @package ...
Updates package tag and adds proper class comments for BasicRender
fuelphp_fieldset
train
469ea863297048e71a593b0b60bb4cbda2af68e0
diff --git a/api.js b/api.js index <HASH>..<HASH> 100644 --- a/api.js +++ b/api.js @@ -47,6 +47,7 @@ define([typeof window === 'undefined' ? 'events' : 'event-emitter', this.scopes = options.scopes || null; this.redirect_uri = options.redirect_uri || null; this.client_id = options...
<I> - support authorization grant OAuth2 flow for browser clients.
hpcloud_cloud-foundry-client-js
train
0c9d12bb83cd96dbb3111e8f2f58c9cf030ac862
diff --git a/concrete/src/File/FolderItemList.php b/concrete/src/File/FolderItemList.php index <HASH>..<HASH> 100644 --- a/concrete/src/File/FolderItemList.php +++ b/concrete/src/File/FolderItemList.php @@ -155,16 +155,14 @@ class FolderItemList extends AttributedItemList implements PagerProviderInterfac public ...
Fix to check permission of current file folder
concrete5_concrete5
train
ffa3b01923f09f29e88139c9ae03d8ec358682c6
diff --git a/src/MetaModels/Widgets/MultiTextWidget.php b/src/MetaModels/Widgets/MultiTextWidget.php index <HASH>..<HASH> 100644 --- a/src/MetaModels/Widgets/MultiTextWidget.php +++ b/src/MetaModels/Widgets/MultiTextWidget.php @@ -86,7 +86,12 @@ class MultiTextWidget extends \Widget protected function validator($v...
Validate each sub value of the widget The rgxp of Contao can not handle arrays, therefore we validate each array element on it's own.
MetaModels_core
train
1d2185f9acdabdeb32731d288c0dda3da6ea1071
diff --git a/framework/yii/helpers/base/StringHelper.php b/framework/yii/helpers/base/StringHelper.php index <HASH>..<HASH> 100644 --- a/framework/yii/helpers/base/StringHelper.php +++ b/framework/yii/helpers/base/StringHelper.php @@ -43,8 +43,10 @@ class StringHelper /** * Returns the trailing name component of...
added note about usage to StringHelper::basename()
yiisoft_yii2-bootstrap4
train
1a9a48e2ec7c80a835b7009f5ae192101f0049d0
diff --git a/src/Command/Debug/PluginCommand.php b/src/Command/Debug/PluginCommand.php index <HASH>..<HASH> 100644 --- a/src/Command/Debug/PluginCommand.php +++ b/src/Command/Debug/PluginCommand.php @@ -107,8 +107,108 @@ class PluginCommand extends ContainerAwareCommand $this->trans('commands.debug.plugin....
Add additional information for field type plugin, field widget plugin and field formatter plugin (#<I>)
hechoendrupal_drupal-console
train
3a921e326db1eb273165cb46da5977eb48de31f7
diff --git a/src/main/java/com/github/davidmoten/rx/internal/operators/OperatorBufferToFile.java b/src/main/java/com/github/davidmoten/rx/internal/operators/OperatorBufferToFile.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/github/davidmoten/rx/internal/operators/OperatorBufferToFile.java +++ b/src/main/java...
add isUnsubscribed check to the requests loop
davidmoten_rxjava-extras
train
549cc7641843a11829df6640c4321904c2c782ec
diff --git a/bluezle_dbus/services/uart.py b/bluezle_dbus/services/uart.py index <HASH>..<HASH> 100644 --- a/bluezle_dbus/services/uart.py +++ b/bluezle_dbus/services/uart.py @@ -7,6 +7,7 @@ import uuid from .. import bluez from ..gatt import GattCharacteristic + # Define service and characteristic UUIDs. UART_SE...
Change UART read to return None on timeout instead of throw exception.
adafruit_Adafruit_Python_BluefruitLE
train
5177ee3e3db88d5ce206bd64618921ab68c2c859
diff --git a/lib/scribd_fu.rb b/lib/scribd_fu.rb index <HASH>..<HASH> 100644 --- a/lib/scribd_fu.rb +++ b/lib/scribd_fu.rb @@ -1,6 +1,6 @@ module ScribdFu - ConfigPath = "#{::Rails.root.to_s}/config/scribd_fu.yml".freeze + ConfigPath = "config/scribd_fu.yml".freeze # A list of content types supported by iPape...
fix for loading config file, add support for authenticated-read s3 permission for paperclip
mdarby_scribd_fu
train
13e531bd418d13ed27d8a750e961518702a1f0b7
diff --git a/datalad_service/handlers/snapshots.py b/datalad_service/handlers/snapshots.py index <HASH>..<HASH> 100644 --- a/datalad_service/handlers/snapshots.py +++ b/datalad_service/handlers/snapshots.py @@ -46,10 +46,9 @@ class SnapshotResource(object): queue = dataset_queue(dataset) create = crea...
Don't force a checkout to retrieve files during snapshot creation. This is a little less robust but much faster.
OpenNeuroOrg_openneuro
train
a8d4015f47d31cff254bf6e9fce961cdd4c4598c
diff --git a/cake/console/cake.php b/cake/console/cake.php index <HASH>..<HASH> 100644 --- a/cake/console/cake.php +++ b/cake/console/cake.php @@ -260,6 +260,7 @@ class ShellDispatcher { $includes = array( CORE_PATH . 'cake' . DS . 'config' . DS . 'paths.php', + CORE_PATH . 'cake' . DS . 'libs' . DS . 'excep...
Updating bootstrap process in CLI to match the one in web. Updating all_libs to use new file. Updating error_handler test to run in cli. Updating Controller so it imports required classes.
cakephp_cakephp
train
38fa4239f74806fcda072a5b896a89bae47cec12
diff --git a/lib/motion/project/cocoapods.rb b/lib/motion/project/cocoapods.rb index <HASH>..<HASH> 100644 --- a/lib/motion/project/cocoapods.rb +++ b/lib/motion/project/cocoapods.rb @@ -111,9 +111,9 @@ module Motion::Project search_paths = search_paths.strip unless search_paths.empty? ...
Actually add frameworks to dynamically link against to the config.
HipByte_motion-cocoapods
train
ac0479fb5a25323d2461522abd43e099ce028c7b
diff --git a/pypeerassets/__main__.py b/pypeerassets/__main__.py index <HASH>..<HASH> 100644 --- a/pypeerassets/__main__.py +++ b/pypeerassets/__main__.py @@ -40,7 +40,7 @@ def find_all_valid_decks(provider, prod=True) -> list: except AssertionError: pass - with concurrent.futures.ThreadPoolE...
max_workers for find_all_valid_decks.
PeerAssets_pypeerassets
train
a0efecb7e343ee1d7ffca976830a6e6958a2d903
diff --git a/tools/jenkins/junit-stats.py b/tools/jenkins/junit-stats.py index <HASH>..<HASH> 100644 --- a/tools/jenkins/junit-stats.py +++ b/tools/jenkins/junit-stats.py @@ -24,6 +24,9 @@ JUNIT = os.environ.get('junit', None) # set to True if you need to suppress updating the database or JIRA DRY_RUN = False +# se...
ENG-<I>: Add failure significance threshold for fresh failures
VoltDB_voltdb
train
8eeff0fa52938b2a226e3f7e7fa42b468a071c01
diff --git a/dclab/rtdc_dataset/writer.py b/dclab/rtdc_dataset/writer.py index <HASH>..<HASH> 100644 --- a/dclab/rtdc_dataset/writer.py +++ b/dclab/rtdc_dataset/writer.py @@ -102,7 +102,15 @@ class RTDCWriter: self.h5file.attrs["imaging:roi size y"] = shape[0] def store_feature(self, feat, data): - ...
docs: improve docstrings (#<I>)
ZELLMECHANIK-DRESDEN_dclab
train
5e46aa32917b52b94178782cd060b065060aae16
diff --git a/HISTORY.md b/HISTORY.md index <HASH>..<HASH> 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,8 @@ +unreleased +========== + + * Fix hanging on large stack of sync routes + 1.3.6 / 2021-11-15 ================== diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index....
Fix hanging on large stack of sync routes
pillarjs_router
train
29d4d342bd0e28eb99e7c4197ab292109b1066e4
diff --git a/tests/Doctrine/Tests/ORM/Internal/HydrationCompleteHandlerTest.php b/tests/Doctrine/Tests/ORM/Internal/HydrationCompleteHandlerTest.php index <HASH>..<HASH> 100644 --- a/tests/Doctrine/Tests/ORM/Internal/HydrationCompleteHandlerTest.php +++ b/tests/Doctrine/Tests/ORM/Internal/HydrationCompleteHandlerTest.p...
#<I> DDC-<I> - Testing `HydrationCompleteHandler` with multiple deferred entities `postLoad`s
doctrine_orm
train
ba249e3d43e59361b50979e3f2da862a945f120c
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -11,7 +11,9 @@ var getSubfiles = require('./get-subfiles'); var loadSubfile = require('./load-subfile'); var addTask = require('./add-task'); -var tasks = {}; +// Creates a vanilla object with a `null` prot...
Bring index branch test coverage to <I>%, use vanilla object for task registry, remove now-redundant hasOwnProperty check
frankwallis_gulp-hub
train
ef128ad0b0b02b8de91db4274564ee039f6a1ede
diff --git a/salt/utils/gitfs.py b/salt/utils/gitfs.py index <HASH>..<HASH> 100644 --- a/salt/utils/gitfs.py +++ b/salt/utils/gitfs.py @@ -874,6 +874,9 @@ class GitPython(GitProvider): path = salt.utils.path_join(os.path.dirname(path), link_tgt) else: blob = fi...
Return None when find_file identifies the path as a directory (#<I>) This fixes a traceback in the LocalClient when you try to use cp.cache_file on a directory instead of a file.
saltstack_salt
train
9f2ce4b2a49bf0710ef31ef1f1378faf8bce4cc7
diff --git a/js/notebook/src/Plot.js b/js/notebook/src/Plot.js index <HASH>..<HASH> 100644 --- a/js/notebook/src/Plot.js +++ b/js/notebook/src/Plot.js @@ -24,8 +24,6 @@ var plotApi = require('./plot/plotApi'); var OUTUPT_POINTS_LIMIT = 1000000; var OUTUPT_POINTS_PREVIEW_NUMBER = 10000; -window.d3 = d3; - var PlotM...
#<I> do not provide d3 as global variable (#<I>)
twosigma_beakerx
train
37f572befa63372a1afe9c0ba42cee16326d0617
diff --git a/test/integration/aaa_download_only_test.go b/test/integration/aaa_download_only_test.go index <HASH>..<HASH> 100644 --- a/test/integration/aaa_download_only_test.go +++ b/test/integration/aaa_download_only_test.go @@ -73,7 +73,7 @@ func TestDownloadOnly(t *testing.T) { } // skip verify for cach...
Use existing function to check for none driver
kubernetes_minikube
train
1e35e6ad46db2c620582adfe62ed3cf67d883e96
diff --git a/merger/src/main/java/com/metamx/druid/merger/coordinator/TaskQueue.java b/merger/src/main/java/com/metamx/druid/merger/coordinator/TaskQueue.java index <HASH>..<HASH> 100644 --- a/merger/src/main/java/com/metamx/druid/merger/coordinator/TaskQueue.java +++ b/merger/src/main/java/com/metamx/druid/merger/coor...
TaskQueue: Tweak to implementation of findTaskGroupForTask
apache_incubator-druid
train
0163731043a71b7ca5c78c56a85b7270beca99f4
diff --git a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/neo4j/Neo4jDataAutoConfiguration.java b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/neo4j/Neo4jDataAutoConfiguration.java index <HASH>..<HASH> 100644 --- a/spring-boot-autoconfigure/s...
Automatically enable transaction management for Neo4j This commit makes sure that `@EnableTransactionManagement` is auto-configured with Neo4j. It actually reuses what was done in #<I>, making sure that the `Neo4jDataAutoConfiguration` is ordered properly. Closes gh-<I>
spring-projects_spring-boot
train
c2b4fc261c9e2f0e547fa4a37a1d1f3928a3999a
diff --git a/MTS/ValidateInstall.php b/MTS/ValidateInstall.php index <HASH>..<HASH> 100644 --- a/MTS/ValidateInstall.php +++ b/MTS/ValidateInstall.php @@ -121,11 +121,13 @@ class ValidateInstall "Edit /etc/sudoers in the following way:", "", "1) A word of warning, giving Sudo access to the web...
made a mistake in the error return for Debian. requiretty If set, sudo will only run when the user is logged in to a real tty. When this flag is set, sudo can only be run from a login session and not via other means such as cron(8) or cgi-bin scripts. This flag is off by default.
merlinthemagic_MTS
train
817c999e6b3031ad0764ced30da79824d710ecd6
diff --git a/wasp_general/network/clients/base.py b/wasp_general/network/clients/base.py index <HASH>..<HASH> 100644 --- a/wasp_general/network/clients/base.py +++ b/wasp_general/network/clients/base.py @@ -36,16 +36,19 @@ from wasp_general.uri import WURI class WCommonNetworkClientCapability(Enum): + # TODO: rena...
./wasp_general/network/clients/base.py: new compatibility 'remove_dir' was added
a1ezzz_wasp-general
train
be744c386965f02d916b98dc2b53e82a265f7dee
diff --git a/tests/pytests/functional/states/pkgrepo/test_debian.py b/tests/pytests/functional/states/pkgrepo/test_debian.py index <HASH>..<HASH> 100644 --- a/tests/pytests/functional/states/pkgrepo/test_debian.py +++ b/tests/pytests/functional/states/pkgrepo/test_debian.py @@ -467,28 +467,43 @@ def test_pkgrepo_with_a...
move trailing slash repo file to a fixture
saltstack_salt
train
862a685e25439ab2b71b7e6d6beadde9f77b4d01
diff --git a/tests/PHPUnit/IntegrationTestCase.php b/tests/PHPUnit/IntegrationTestCase.php index <HASH>..<HASH> 100755 --- a/tests/PHPUnit/IntegrationTestCase.php +++ b/tests/PHPUnit/IntegrationTestCase.php @@ -904,8 +904,8 @@ abstract class IntegrationTestCase extends PHPUnit_Framework_TestCase } ...
Make test output list all errors, not just the first one
matomo-org_matomo
train
5ecb8b167c55b6fd94ed29560f7ecb22248e1647
diff --git a/cassandra/cqlengine/statements.py b/cassandra/cqlengine/statements.py index <HASH>..<HASH> 100644 --- a/cassandra/cqlengine/statements.py +++ b/cassandra/cqlengine/statements.py @@ -804,7 +804,7 @@ class UpdateStatement(AssignmentStatement): previous = column.to_database(previous) ...
pass prev value to counter update clause PYTHON-<I>
datastax_python-driver
train
7278ec15c4f8e859c2024446f809947dbb1653d9
diff --git a/src/beliefs/beliefstate.py b/src/beliefs/beliefstate.py index <HASH>..<HASH> 100644 --- a/src/beliefs/beliefstate.py +++ b/src/beliefs/beliefstate.py @@ -168,6 +168,7 @@ class BeliefState(DictCell): """ unique_values = self.get_ordered_values(keypath, distance_from) if 0 <= n < l...
rewrote get_ordered_values function to work with differences
EventTeam_beliefs
train
e50804cef48ea65e1add64f49ecd25e2a5b3fe3c
diff --git a/src/Symfony/Component/Form/Extension/Core/DataTransformer/NumberToLocalizedStringTransformer.php b/src/Symfony/Component/Form/Extension/Core/DataTransformer/NumberToLocalizedStringTransformer.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/Form/Extension/Core/DataTransformer/NumberToLocalizedSt...
[Form] Improve rounding precision
symfony_symfony
train
81a7260b2c354b7ccbe33d882a00a31b2ec52c39
diff --git a/bambi/models.py b/bambi/models.py index <HASH>..<HASH> 100644 --- a/bambi/models.py +++ b/bambi/models.py @@ -24,8 +24,6 @@ class Model(object): intercept (bool): If True, an intercept term is added to the model at initialization. Defaults to False, as both fixed and random ...
moves backend specification into build; closes #<I>
bambinos_bambi
train
53d10831403cc04dcf750f19648ea8f08c78ef76
diff --git a/spec/tournament/page_playoff_spec.rb b/spec/tournament/page_playoff_spec.rb index <HASH>..<HASH> 100644 --- a/spec/tournament/page_playoff_spec.rb +++ b/spec/tournament/page_playoff_spec.rb @@ -36,6 +36,19 @@ describe Tournament::PagePlayoff do describe '#generate' do let(:teams) { [1, 2, 3, 4] } ...
Expanded tests for error handling in page playoff system
ozfortress_tournament-system
train
46acfd0b82b4786c5369c30edd0de922f58ebc93
diff --git a/ruia/request.py b/ruia/request.py index <HASH>..<HASH> 100644 --- a/ruia/request.py +++ b/ruia/request.py @@ -147,8 +147,12 @@ class Request: :param sem: Semaphore :return: Tuple[AsyncGeneratorType, Response] """ - async with sem: - response = await self.fetch()...
Fixed: reqtest test error
howie6879_ruia
train
624beafc7e96bb088cafdfd6265654666d95333c
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -1,8 +1,18 @@ 'use strict'; +var constructorRegex = /\s*class /; +var isNonES6ClassFn = function isNonES6ClassFn(value) { + try { + return !constructorRegex.test(value); + } catch (e) { + return false; // not a function +...
[Fix] do not throw when a non-function has a function in its [[Prototype]] Fixes #2.
ljharb_is-callable
train
96c5ab052ff21136e34ca00c467a5036b764c0b7
diff --git a/lib/ical_importer/recurrence_event_builder.rb b/lib/ical_importer/recurrence_event_builder.rb index <HASH>..<HASH> 100644 --- a/lib/ical_importer/recurrence_event_builder.rb +++ b/lib/ical_importer/recurrence_event_builder.rb @@ -24,10 +24,10 @@ module IcalImporter def build_new_local_event(remote_eve...
return ruby, not icalendar types
sportngin_ical_importer
train
e045b92175e7b9d30f2fdb7eb1dbebad1748531c
diff --git a/lib/dm-core/query.rb b/lib/dm-core/query.rb index <HASH>..<HASH> 100644 --- a/lib/dm-core/query.rb +++ b/lib/dm-core/query.rb @@ -389,6 +389,16 @@ module DataMapper end end + # Clear conditions + # + # @return [self] + # + # @api semipublic + def clear + @conditions = C...
Allow Query and AbstractOperation to be cleared
datamapper_dm-core
train
87b24b463319aa9b163cddba2bda253d4e8678cb
diff --git a/pulsectl/pulsectl.py b/pulsectl/pulsectl.py index <HASH>..<HASH> 100644 --- a/pulsectl/pulsectl.py +++ b/pulsectl/pulsectl.py @@ -361,7 +361,7 @@ class Pulse(object): else: data_list.append(info_cls(info[0])) return 0 - def _pulse_get_list(cb_t, pulse_func, info_cls, singleton=False): + def _pulse_...
Use pulse.stream_restore_list as alias for stream_restore_read
mk-fg_python-pulse-control
train
a59419c27e45f06be5143c58d48affb0a5158bdf
diff --git a/python/pyspark/rdd.py b/python/pyspark/rdd.py index <HASH>..<HASH> 100644 --- a/python/pyspark/rdd.py +++ b/python/pyspark/rdd.py @@ -946,7 +946,21 @@ class RDD(object): combiners[k] = mergeCombiners(combiners[k], v) return combiners.iteritems() return shuffled.ma...
SPARK-<I>, Added foldByKey to pyspark.
apache_spark
train