diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/tests/test_repr.py b/tests/test_repr.py
index <HASH>..<HASH> 100644
--- a/tests/test_repr.py
+++ b/tests/test_repr.py
@@ -4,18 +4,21 @@ import six
class ReprTest(unittest.TestCase):
+ """Checks that the string representations of charts and entries are correct.
+ """
+
+ @classmethod
+ def ... | Merge tests to reduce number of HTTP requests |
diff --git a/test/run.js b/test/run.js
index <HASH>..<HASH> 100644
--- a/test/run.js
+++ b/test/run.js
@@ -8,7 +8,7 @@ describe('async-chainable.run() - parallel execution with arrays', function() {
var output = [];
asyncChainable()
- .run([
+ .runArray([
function(next) { output.push('cb1'); next() },
... | BUGFIX: Wrong function name after recent funciton rename |
diff --git a/lib/stream/feed.rb b/lib/stream/feed.rb
index <HASH>..<HASH> 100644
--- a/lib/stream/feed.rb
+++ b/lib/stream/feed.rb
@@ -111,32 +111,23 @@ module Stream
self.make_request(:post, uri, nil, follow_data)
end
- def parse_follow_data(response)
- return {
- ... | return <I> feeds by default |
diff --git a/lnwallet/channel.go b/lnwallet/channel.go
index <HASH>..<HASH> 100644
--- a/lnwallet/channel.go
+++ b/lnwallet/channel.go
@@ -1421,9 +1421,14 @@ func createCommitTx(fundingOutput *wire.TxIn, selfKey, theirKey *btcec.PublicKey
commitTx := wire.NewMsgTx()
commitTx.Version = 2
commitTx.AddTxIn(fundingOu... | lnwallet: never create zero-value outputs within the commitment transaction |
diff --git a/Components/Helper/OpenSSLHelper.php b/Components/Helper/OpenSSLHelper.php
index <HASH>..<HASH> 100755
--- a/Components/Helper/OpenSSLHelper.php
+++ b/Components/Helper/OpenSSLHelper.php
@@ -28,6 +28,8 @@ class OpenSSLHelper
*/
public static function encrypt($plainText, $key, $cipher)
{
+ ... | fix cipher for openssl <I> |
diff --git a/tests/Integration/Http/ThrottleRequestsTest.php b/tests/Integration/Http/ThrottleRequestsTest.php
index <HASH>..<HASH> 100644
--- a/tests/Integration/Http/ThrottleRequestsTest.php
+++ b/tests/Integration/Http/ThrottleRequestsTest.php
@@ -44,9 +44,9 @@ class ThrottleRequestsTest extends TestCase
... | Apply fixes from StyleCI (#<I>) |
diff --git a/src/adapt/layout.js b/src/adapt/layout.js
index <HASH>..<HASH> 100644
--- a/src/adapt/layout.js
+++ b/src/adapt/layout.js
@@ -888,7 +888,6 @@ adapt.layout.Column.prototype.layoutFloat = function(nodeContext) {
// TODO: review if it is good to rely on it
// TODO: position where a real float would have... | make float element position: absolute after positioning done |
diff --git a/lib/beetle/version.rb b/lib/beetle/version.rb
index <HASH>..<HASH> 100644
--- a/lib/beetle/version.rb
+++ b/lib/beetle/version.rb
@@ -1,3 +1,3 @@
module Beetle
- VERSION = "0.4.0"
+ VERSION = "0.4.1"
end | bumped version to <I> |
diff --git a/src/Slick/Database/Adapter/MysqlAdapter.php b/src/Slick/Database/Adapter/MysqlAdapter.php
index <HASH>..<HASH> 100644
--- a/src/Slick/Database/Adapter/MysqlAdapter.php
+++ b/src/Slick/Database/Adapter/MysqlAdapter.php
@@ -83,7 +83,7 @@ class MysqlAdapter extends AbstractAdapter implements AdapterInterface
... | Fixing the PDO exceptions mode |
diff --git a/lib/active_scaffold/config/search.rb b/lib/active_scaffold/config/search.rb
index <HASH>..<HASH> 100644
--- a/lib/active_scaffold/config/search.rb
+++ b/lib/active_scaffold/config/search.rb
@@ -42,7 +42,7 @@ module ActiveScaffold::Config
def columns
# we want to delay initializing to the @core.... | Bugfix: ignore_columns settings are not considered for search_columns
(issue <I> by eriko) |
diff --git a/lib/cms_scanner.rb b/lib/cms_scanner.rb
index <HASH>..<HASH> 100644
--- a/lib/cms_scanner.rb
+++ b/lib/cms_scanner.rb
@@ -106,13 +106,7 @@ module CMSScanner
# depending on the findings / errors
def exit_hook
at_exit do
- if run_error
- exit(NS::ExitCode::CLI_OPTION_ERROR) i... | rework the at_exit hook a bit |
diff --git a/zipline/examples/dual_ema_talib.py b/zipline/examples/dual_ema_talib.py
index <HASH>..<HASH> 100644
--- a/zipline/examples/dual_ema_talib.py
+++ b/zipline/examples/dual_ema_talib.py
@@ -53,11 +53,11 @@ class DualEMATaLib(TradingAlgorithm):
self.buy = False
self.sell = False
- if ... | MAINT: Use more exact boolean checks for pandas structures.
To prepare for being compatible with pandas==<I>, which is stricter
on boolean checks. |
diff --git a/app/src/js/init.js b/app/src/js/init.js
index <HASH>..<HASH> 100644
--- a/app/src/js/init.js
+++ b/app/src/js/init.js
@@ -222,7 +222,7 @@ var init = {
});
// Check if any records in the overview have been checked, and if so: show action buttons.
- $('.dashboardlisting input:check... | Make row checkbox more selective when en/disabling buttons |
diff --git a/web/concrete/single_pages/dashboard/reports/statistics.php b/web/concrete/single_pages/dashboard/reports/statistics.php
index <HASH>..<HASH> 100644
--- a/web/concrete/single_pages/dashboard/reports/statistics.php
+++ b/web/concrete/single_pages/dashboard/reports/statistics.php
@@ -66,6 +66,8 @@ defined('C5... | light tweaks to statistics but it's still broken
Former-commit-id: e<I>ac8cc1dd<I>cac3cf4ef<I>b0e<I>f |
diff --git a/test/test_mock_solver_loading.py b/test/test_mock_solver_loading.py
index <HASH>..<HASH> 100644
--- a/test/test_mock_solver_loading.py
+++ b/test/test_mock_solver_loading.py
@@ -7,6 +7,7 @@ import unittest
import requests_mock
import dwave_micro_client
+from dwave_micro_client import InvalidAPIResponse... | Fix unit test for case of a solver with invalid structure |
diff --git a/test/__init__.py b/test/__init__.py
index <HASH>..<HASH> 100644
--- a/test/__init__.py
+++ b/test/__init__.py
@@ -106,6 +106,7 @@ class TestSendGrid(unittest.TestCase):
self.assertEqual(html, url['html'])
def test_drop_to_header(self):
+ smtpapi = '{}'
m = Mail()
m.... | Assert dumps in headers |
diff --git a/lib/kaminari/sinatra.rb b/lib/kaminari/sinatra.rb
index <HASH>..<HASH> 100644
--- a/lib/kaminari/sinatra.rb
+++ b/lib/kaminari/sinatra.rb
@@ -2,4 +2,6 @@ require 'sinatra/base'
require 'kaminari'
require 'kaminari/helpers/sinatra_helpers'
+ActiveSupport::Deprecation.warn 'Kaminari Sinatra support has b... | Extract kaminari-sinatra gem, and warn users to use the gemified adapter
The built-in Sinatra support will be removed from this gem in the <I> release |
diff --git a/src/adapters/stdOut.js b/src/adapters/stdOut.js
index <HASH>..<HASH> 100644
--- a/src/adapters/stdOut.js
+++ b/src/adapters/stdOut.js
@@ -12,6 +12,13 @@ function configure( config, formatter ) {
error: "red"
}, config.theme );
+ var logType = {
+ info: "info",
+ warn: "warn",
+ debug: "log... | first hack to use appropriate console method for logging levels |
diff --git a/kernel_tuner/strategies/firefly_algorithm.py b/kernel_tuner/strategies/firefly_algorithm.py
index <HASH>..<HASH> 100644
--- a/kernel_tuner/strategies/firefly_algorithm.py
+++ b/kernel_tuner/strategies/firefly_algorithm.py
@@ -66,7 +66,7 @@ def tune(runner, kernel_options, device_options, tuning_options):
... | fix computation of initial scores in firefly |
diff --git a/lib/disney/couchbaseChannel.js b/lib/disney/couchbaseChannel.js
index <HASH>..<HASH> 100644
--- a/lib/disney/couchbaseChannel.js
+++ b/lib/disney/couchbaseChannel.js
@@ -30,6 +30,8 @@ const sLongPollDelay = Symbol('Long Poll Restart Delay');
// size of batches to fetch docs in
const docFetchBatchSize = 5... | [~] Set longpoll timeout to 5 minutes |
diff --git a/users.go b/users.go
index <HASH>..<HASH> 100644
--- a/users.go
+++ b/users.go
@@ -246,7 +246,7 @@ func (api *Client) GetUserIdentityContext(ctx context.Context) (*UserIdentityRes
// SetUserPhoto changes the currently authenticated user's profile image
func (api *Client) SetUserPhoto(ctx context.Context... | Fix bug wherein users.SetUserPhoto was calling itself recursively. |
diff --git a/redis_metrics/utils.py b/redis_metrics/utils.py
index <HASH>..<HASH> 100644
--- a/redis_metrics/utils.py
+++ b/redis_metrics/utils.py
@@ -10,9 +10,9 @@ def metric(slug, num=1, **kwargs):
_r.metric(slug, num)
-def gague(slug, current_value):
- """Set a value for a Guage"""
- _r.gague(slug, cu... | Fixed the spelling of ``gauge`` again. |
diff --git a/lib/fog/dynect/requests/dns/get_record.rb b/lib/fog/dynect/requests/dns/get_record.rb
index <HASH>..<HASH> 100644
--- a/lib/fog/dynect/requests/dns/get_record.rb
+++ b/lib/fog/dynect/requests/dns/get_record.rb
@@ -60,7 +60,7 @@ module Fog
records = zone[:records][type].select { |record| record... | [dynect|dns] accidentally hardcoded the record type in the mocked data. |
diff --git a/src/hamster/widgets/facttree.py b/src/hamster/widgets/facttree.py
index <HASH>..<HASH> 100644
--- a/src/hamster/widgets/facttree.py
+++ b/src/hamster/widgets/facttree.py
@@ -321,6 +321,7 @@ class FactTree(graphics.Scene, gtk.Scrollable):
return facts_ids.index(self.current_fact.id)
def on_m... | call on_mouse_move in on_mouse_down
otherwise the hover information is sometimes not up to date |
diff --git a/sling/core/commons/src/main/java/com/composum/sling/clientlibs/service/DefaultClientlibService.java b/sling/core/commons/src/main/java/com/composum/sling/clientlibs/service/DefaultClientlibService.java
index <HASH>..<HASH> 100644
--- a/sling/core/commons/src/main/java/com/composum/sling/clientlibs/service/... | CMP-<I> Don't present missing optional resources as error |
diff --git a/dclab/rtdc_dataset/fmt_tdms/naming.py b/dclab/rtdc_dataset/fmt_tdms/naming.py
index <HASH>..<HASH> 100644
--- a/dclab/rtdc_dataset/fmt_tdms/naming.py
+++ b/dclab/rtdc_dataset/fmt_tdms/naming.py
@@ -35,6 +35,8 @@ dclab2tdms = {
"pos_y": "y",
"size_x": "ax2",
"size_y": "ax1",
+ "temp": "tem... | Update naming.py
Add keys for ambient and sample temperature during measurement |
diff --git a/core/src/main/java/hudson/util/AtomicFileWriter.java b/core/src/main/java/hudson/util/AtomicFileWriter.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/hudson/util/AtomicFileWriter.java
+++ b/core/src/main/java/hudson/util/AtomicFileWriter.java
@@ -149,7 +149,7 @@ public class AtomicFileWriter ext... | Fix JENKINS-<I>
Add StandardOpenOption.CREATE flag to create FileChannelWriter to avoid full fs flush and 5sec log operation on creating empty file with CephFS as a storage |
diff --git a/hammer.js b/hammer.js
index <HASH>..<HASH> 100644
--- a/hammer.js
+++ b/hammer.js
@@ -25,16 +25,16 @@ function HammerPlugin(game, opts) {
};
HammerPlugin.prototype.enable = function() {
- this.registry.registerItem('hammerIron', {
+ this.registry.registerItem('hammer', {
itemTexture: 'items/iron... | Rename item to just 'hammer' (drop iron) |
diff --git a/esm-webpack-plugin.js b/esm-webpack-plugin.js
index <HASH>..<HASH> 100644
--- a/esm-webpack-plugin.js
+++ b/esm-webpack-plugin.js
@@ -52,6 +52,7 @@ function exportsForModule(module, libVar) {
exports += `export default ${libVar};\nexport { ${libVar} };\n`
}
return `
+${libVar} === undefi... | Add output console error code for when no exports are exposed |
diff --git a/lang/en_utf8/form.php b/lang/en_utf8/form.php
index <HASH>..<HASH> 100644
--- a/lang/en_utf8/form.php
+++ b/lang/en_utf8/form.php
@@ -15,7 +15,7 @@ $string['err_rangelength']='You must enter between {$a->format[0]} and {$a->form
$string['err_required']='You must supply a value here.';
$string['nomethodfo... | MDL-<I> Remove dot from "Required field." string |
diff --git a/pandas/core/frame.py b/pandas/core/frame.py
index <HASH>..<HASH> 100644
--- a/pandas/core/frame.py
+++ b/pandas/core/frame.py
@@ -8325,7 +8325,6 @@ Wild 185.0
result = result.iloc[0].rename(None)
return result
- data = self
if numeric_only is ... | CLN: Remove unused assignment (#<I>) |
diff --git a/activerecord/lib/active_record/tasks/database_tasks.rb b/activerecord/lib/active_record/tasks/database_tasks.rb
index <HASH>..<HASH> 100644
--- a/activerecord/lib/active_record/tasks/database_tasks.rb
+++ b/activerecord/lib/active_record/tasks/database_tasks.rb
@@ -78,7 +78,7 @@ module ActiveRecord
... | Cast env to symbol, fixes deprecation warning
Warning:
DEPRECATION WARNING: Passing a string to ActiveRecord::Base.establish_connection for a configuration lookup is deprecated, please pass a symbol (:development) instead. |
diff --git a/src/utils/processing/get-convertible-texture-ids.js b/src/utils/processing/get-convertible-texture-ids.js
index <HASH>..<HASH> 100644
--- a/src/utils/processing/get-convertible-texture-ids.js
+++ b/src/utils/processing/get-convertible-texture-ids.js
@@ -8,7 +8,16 @@ export default function getConvertibleTe... | filter texture keys to include only source maps |
diff --git a/lib/omnibus/whitelist.rb b/lib/omnibus/whitelist.rb
index <HASH>..<HASH> 100644
--- a/lib/omnibus/whitelist.rb
+++ b/lib/omnibus/whitelist.rb
@@ -152,6 +152,7 @@ MAC_WHITELIST_LIBS = [
/Foundation/,
/IOKit$/,
/Tk$/,
+ /libbrotlidec\.1\.dylib/,
/libutil\.dylib/,
/libffi\.dylib/,
/libncurs... | Fix mac_x-<I> failure for chef-workstation |
diff --git a/tools/builder/rollup.js b/tools/builder/rollup.js
index <HASH>..<HASH> 100644
--- a/tools/builder/rollup.js
+++ b/tools/builder/rollup.js
@@ -314,6 +314,7 @@ async function createCompat(name) {
{
loose: true,
useBuiltIns: 'entry',
+ corejs: 3,
mo... | mute babel warning during compat build |
diff --git a/components/place-under-ng/place-under-ng.js b/components/place-under-ng/place-under-ng.js
index <HASH>..<HASH> 100644
--- a/components/place-under-ng/place-under-ng.js
+++ b/components/place-under-ng/place-under-ng.js
@@ -87,7 +87,7 @@ const module = angular.module('Ring.place-under', []);
* rg-place-und... | JPS-<I> use native setTimeout because we don't want to trigger digest while just checking element height
Former-commit-id: 9c1c<I>a<I>b<I>a<I>f<I>da0d<I>fe<I>e4 |
diff --git a/lib/fastlane/runner.rb b/lib/fastlane/runner.rb
index <HASH>..<HASH> 100644
--- a/lib/fastlane/runner.rb
+++ b/lib/fastlane/runner.rb
@@ -8,7 +8,8 @@ module Fastlane
return_val = nil
- Dir.chdir(Fastlane::FastlaneFolder.path || Dir.pwd) do # the file is located in the fastlane folder
+ ... | Fixed problem with error block running in the wrong folder context |
diff --git a/src/VuFindCode/ISBN.php b/src/VuFindCode/ISBN.php
index <HASH>..<HASH> 100644
--- a/src/VuFindCode/ISBN.php
+++ b/src/VuFindCode/ISBN.php
@@ -134,7 +134,16 @@ class ISBN
*/
public static function normalizeISBN($raw)
{
- return preg_replace('/[^0-9X]/', '', strtoupper($raw));
+ ... | Clean inappropriately-positioned X characters. |
diff --git a/test_apps/test_app/test/ens_spec.js b/test_apps/test_app/test/ens_spec.js
index <HASH>..<HASH> 100644
--- a/test_apps/test_app/test/ens_spec.js
+++ b/test_apps/test_app/test/ens_spec.js
@@ -17,22 +17,28 @@ config({
"args": ["$ENSRegistry", rootNode],
"onDeploy": [
`ENSRegistry.method... | use setInterval to wait for deploy complete |
diff --git a/lib/cache/get.js b/lib/cache/get.js
index <HASH>..<HASH> 100644
--- a/lib/cache/get.js
+++ b/lib/cache/get.js
@@ -4,7 +4,7 @@ module.exports = function (cache, type, index) {
var group = cache[type];
var cached = group.items[index];
if (cached && cached.time) {
- if (group.permanent) {
... | Fix
Well... apparently the cache was never really enabled
Oops |
diff --git a/src/UnderConstructionServiceProvider.php b/src/UnderConstructionServiceProvider.php
index <HASH>..<HASH> 100644
--- a/src/UnderConstructionServiceProvider.php
+++ b/src/UnderConstructionServiceProvider.php
@@ -26,7 +26,7 @@ class UnderConstructionServiceProvider extends ServiceProvider
$this->comm... | Scrutinizer Auto-Fixes
This commit consists of patches automatically generated for this project on <URL> |
diff --git a/source/Application/Controller/Admin/SystemInfoController.php b/source/Application/Controller/Admin/SystemInfoController.php
index <HASH>..<HASH> 100644
--- a/source/Application/Controller/Admin/SystemInfoController.php
+++ b/source/Application/Controller/Admin/SystemInfoController.php
@@ -61,8 +61,7 @@ cla... | OXDEV-<I> Output buffer usage improvement |
diff --git a/src/Metrics/Subscription.php b/src/Metrics/Subscription.php
index <HASH>..<HASH> 100644
--- a/src/Metrics/Subscription.php
+++ b/src/Metrics/Subscription.php
@@ -23,6 +23,7 @@ class Subscription extends AbstractModel
{
protected $id;
+ protected $external_id;
protected $plan;
protected... | Support external_id on Metrics Subscriptions |
diff --git a/javascript/UploadField.js b/javascript/UploadField.js
index <HASH>..<HASH> 100644
--- a/javascript/UploadField.js
+++ b/javascript/UploadField.js
@@ -102,10 +102,13 @@
this.fileupload($.extend(true,
{
formData: function(form) {
-
+ var idVal = $(form).find(':input[name=ID]')... | BUGFIX: UploadField does not work on DataObjects |
diff --git a/Tone/component/Envelope.js b/Tone/component/Envelope.js
index <HASH>..<HASH> 100644
--- a/Tone/component/Envelope.js
+++ b/Tone/component/Envelope.js
@@ -179,6 +179,18 @@ define(["Tone/core/Tone", "Tone/signal/Signal"], function(Tone){
};
/**
+ * trigger the attack and release after a sustain time
... | triggerAttackRelease on Envelope |
diff --git a/lib/drizzlepac/adriz_versions.py b/lib/drizzlepac/adriz_versions.py
index <HASH>..<HASH> 100644
--- a/lib/drizzlepac/adriz_versions.py
+++ b/lib/drizzlepac/adriz_versions.py
@@ -10,4 +10,4 @@ else:
__version__ = '1.0.0'
__full_version__ = __version__+sversion
-__vdate__ = '25-May-2012'
+__vdate__ = '30... | Update version date for drizzlepac to reflect change made to support OPUS pipeline operations; specifically, static mask filenames now partially randomly generated.
git-svn-id: <URL> |
diff --git a/lib/arbetsformedlingen/api/results/ad_result.rb b/lib/arbetsformedlingen/api/results/ad_result.rb
index <HASH>..<HASH> 100644
--- a/lib/arbetsformedlingen/api/results/ad_result.rb
+++ b/lib/arbetsformedlingen/api/results/ad_result.rb
@@ -7,6 +7,8 @@ module Arbetsformedlingen
# @param [API::Response]... | Return empty Values::Ad object if response is not success |
diff --git a/Testing/Fakes/NotificationFake.php b/Testing/Fakes/NotificationFake.php
index <HASH>..<HASH> 100644
--- a/Testing/Fakes/NotificationFake.php
+++ b/Testing/Fakes/NotificationFake.php
@@ -232,9 +232,24 @@ class NotificationFake implements NotificationDispatcher, NotificationFactory
$notifica... | [8.x] Notification assertions respect `shouldSend` method on notification (#<I>)
* added `shouldSend` support to notification assertions
* changed count to empty |
diff --git a/polyaxon_schemas/polyaxonfile/specification.py b/polyaxon_schemas/polyaxonfile/specification.py
index <HASH>..<HASH> 100644
--- a/polyaxon_schemas/polyaxonfile/specification.py
+++ b/polyaxon_schemas/polyaxonfile/specification.py
@@ -389,8 +389,13 @@ class GroupSpecification(BaseSpecification):
@cac... | Add search method to experiment_def |
diff --git a/docker/examples/stats/stats.go b/docker/examples/stats/stats.go
index <HASH>..<HASH> 100644
--- a/docker/examples/stats/stats.go
+++ b/docker/examples/stats/stats.go
@@ -11,7 +11,8 @@ import (
// Retrieve global email statistics
// GET /stats
-func Retrieveglobalemailstatistics() {
+// RetrieveGlobalEm... | convert to camelcase for readability and add godoc |
diff --git a/h2o-core/src/main/java/water/H2O.java b/h2o-core/src/main/java/water/H2O.java
index <HASH>..<HASH> 100644
--- a/h2o-core/src/main/java/water/H2O.java
+++ b/h2o-core/src/main/java/water/H2O.java
@@ -681,7 +681,10 @@ final public class H2O {
StringBuilder ua = new StringBuilder();
if (source.... | Do a pretty parsing of python user agent for calc of model name. |
diff --git a/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentInner.java b/azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentInner.java
index <HASH>..<HASH> 100644
--- a/azure-mgmt-resources/src/main/java/com/microsof... | Regenerated Resources (#<I>) |
diff --git a/lib/Github/Api/Organization/Members.php b/lib/Github/Api/Organization/Members.php
index <HASH>..<HASH> 100644
--- a/lib/Github/Api/Organization/Members.php
+++ b/lib/Github/Api/Organization/Members.php
@@ -10,13 +10,20 @@ use Github\Api\AbstractApi;
*/
class Members extends AbstractApi
{
- public fu... | Add support for filtering organisation members by 2FA status |
diff --git a/javaobj.py b/javaobj.py
index <HASH>..<HASH> 100644
--- a/javaobj.py
+++ b/javaobj.py
@@ -315,6 +315,9 @@ class JavaString(str):
"""
Represents a Java String
"""
+ def __hash__(self):
+ return str.__hash__(self)
+
def __eq__(self, other):
if not isinstance(other, str)... | Small corrections due to tests
- JavaString is now hashable
- Use an integer-division reading annotations |
diff --git a/shaderdef/stage.py b/shaderdef/stage.py
index <HASH>..<HASH> 100644
--- a/shaderdef/stage.py
+++ b/shaderdef/stage.py
@@ -43,7 +43,7 @@ class Stage(object):
self._return_type = get_output_interface(func)
def declare_inputs(self, lines):
- for name, param_type in self._params.items():... | Add sorting to make output deterministic |
diff --git a/mode/xml/xml.js b/mode/xml/xml.js
index <HASH>..<HASH> 100644
--- a/mode/xml/xml.js
+++ b/mode/xml/xml.js
@@ -21,7 +21,7 @@ CodeMirror.defineMode("xml", function(config, parserConfig) {
autoSelfClosers: {'area': true, 'base': true, 'br': true, 'col': true, 'command': true,
'embe... | [xml mode] Mark <menuitem> as self-closing tag
Closes #<I> |
diff --git a/src/Library/Usage.php b/src/Library/Usage.php
index <HASH>..<HASH> 100644
--- a/src/Library/Usage.php
+++ b/src/Library/Usage.php
@@ -36,7 +36,7 @@ class Usage {
* @access private
* @var string
*/
- private $gaId = 'UA-1501988-42';
+ private $gaId;
/**
* An array of page prefixes to load us... | Move ga id to config file |
diff --git a/lib/sbsm/request.rb b/lib/sbsm/request.rb
index <HASH>..<HASH> 100644
--- a/lib/sbsm/request.rb
+++ b/lib/sbsm/request.rb
@@ -80,6 +80,9 @@ module SBSM
'drbsession_uri' => @drb_uri,
'session_path' => '/',
}
+ if unparsed_uri =~ /pointer/
+ return
+ end
if(is_craw... | Drop any request containing pointer in it |
diff --git a/lib/environment.js b/lib/environment.js
index <HASH>..<HASH> 100644
--- a/lib/environment.js
+++ b/lib/environment.js
@@ -13,6 +13,8 @@ module.exports = {
string_decoder: {preferBuiltin: true, glob: true},
buffer: {expose: 'buffer', glob: true},
url: {preferBuiltin: true, glob: t... | Added punycode and querystring to the sandbox |
diff --git a/gnotty/server.py b/gnotty/server.py
index <HASH>..<HASH> 100755
--- a/gnotty/server.py
+++ b/gnotty/server.py
@@ -159,7 +159,8 @@ def run():
print "Could not kill any daemons"
return
if settings.DAEMON:
- kill(pid_file)
+ if kill(pid_file):
+ print "Runni... | Show a message when a current daemon is killed by starting a new one. |
diff --git a/spyder/plugins/projects/projecttypes/__init__.py b/spyder/plugins/projects/projecttypes/__init__.py
index <HASH>..<HASH> 100644
--- a/spyder/plugins/projects/projecttypes/__init__.py
+++ b/spyder/plugins/projects/projecttypes/__init__.py
@@ -61,12 +61,16 @@ class BaseProject(object):
def set_recent_... | Projects: Handle relative paths for recent files on different mounts |
diff --git a/test/integration/index.js b/test/integration/index.js
index <HASH>..<HASH> 100644
--- a/test/integration/index.js
+++ b/test/integration/index.js
@@ -204,7 +204,7 @@ describe('Stream client', function () {
});
it('add activity', function (done) {
- var activity = {'actor': 1, 'verb': 'add', 'obj... | a bit more extensive testing on add activity |
diff --git a/src/components/chips/Chips.js b/src/components/chips/Chips.js
index <HASH>..<HASH> 100644
--- a/src/components/chips/Chips.js
+++ b/src/components/chips/Chips.js
@@ -118,18 +118,19 @@ export class Chips extends Component {
onKeyDown(event) {
const inputValue = event.target.value;
+ c... | Fixed #<I> - Chips is not working when the initial value sets 'null' |
diff --git a/jlib-core/src/main/java/org/jlib/core/collection/ContainsKeyCacheMap.java b/jlib-core/src/main/java/org/jlib/core/collection/ContainsKeyCacheMap.java
index <HASH>..<HASH> 100644
--- a/jlib-core/src/main/java/org/jlib/core/collection/ContainsKeyCacheMap.java
+++ b/jlib-core/src/main/java/org/jlib/core/colle... | using Guava ForwardingMap instead of DelegatingMap |
diff --git a/salt/fileclient.py b/salt/fileclient.py
index <HASH>..<HASH> 100644
--- a/salt/fileclient.py
+++ b/salt/fileclient.py
@@ -228,6 +228,7 @@ class Client(object):
# go through the list of all files finding ones that are in
# the target directory and caching them
for fn_ in self.file... | Decode unicode names in fileclient/server
Closes #<I> |
diff --git a/lib/nominatim/search.rb b/lib/nominatim/search.rb
index <HASH>..<HASH> 100644
--- a/lib/nominatim/search.rb
+++ b/lib/nominatim/search.rb
@@ -149,5 +149,23 @@ module Nominatim
self
end
+ # Limit results to certain type, instead of trying to match
+ # all possible matches.
+ #
+ # ... | Added undocumented criteria featuretype to Search.
This allows restriction by certain area feature, like city,
so results from another city specified in the query won’t
be mixed to the result. For some reason this feature is not
documented in public API doc of Nominatim. |
diff --git a/udiskie/prompt.py b/udiskie/prompt.py
index <HASH>..<HASH> 100644
--- a/udiskie/prompt.py
+++ b/udiskie/prompt.py
@@ -146,6 +146,7 @@ def get_password_gui(device):
return None
+@Coroutine.from_generator_function
def get_password_tty(device):
"""Get the password to unlock a device from te... | Fix bug with get_password_tty |
diff --git a/datasette/cli.py b/datasette/cli.py
index <HASH>..<HASH> 100644
--- a/datasette/cli.py
+++ b/datasette/cli.py
@@ -550,7 +550,9 @@ def serve(
)
# De-duplicate files so 'datasette db.db db.db' only attaches one /db
- files = list(dict.fromkeys(files))
+ files_seen = set()
+ d... | Use de-dupe idiom that works with Python <I>, refs #<I> |
diff --git a/demo.py b/demo.py
index <HASH>..<HASH> 100755
--- a/demo.py
+++ b/demo.py
@@ -2,6 +2,7 @@
import argparse
import re
+import logging
from miflora.miflora_poller import MiFloraPoller, \
MI_CONDUCTIVITY, MI_MOISTURE, MI_LIGHT, MI_TEMPERATURE, MI_BATTERY
@@ -18,6 +19,7 @@ def valid_miflora_mac(mac,... | added "-v" flag to demo.py to print debug output to console. (#<I>) |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -168,6 +168,7 @@ def _filter_requirements(lines_iter, filter_names=None,
REQ_UPPER_BOUNDS = {
'bcolz': '<1',
'pandas': '<0.19',
+ 'networkx': '<2.0',
} | MAINT: networkx 2 changes the behavior of out_degree |
diff --git a/kconfiglib.py b/kconfiglib.py
index <HASH>..<HASH> 100644
--- a/kconfiglib.py
+++ b/kconfiglib.py
@@ -1381,6 +1381,11 @@ class Config(object):
def _eval_expr(self, expr):
"""Evaluates an expression and returns one of the tristate values "n",
"m" or "y"."""
+
+ # Handles e.g. a... | Move 'expr is None' check up to _eval_expr().
None should never appear as a subexpression. |
diff --git a/niworkflows/reports/tests/test_core.py b/niworkflows/reports/tests/test_core.py
index <HASH>..<HASH> 100644
--- a/niworkflows/reports/tests/test_core.py
+++ b/niworkflows/reports/tests/test_core.py
@@ -214,3 +214,30 @@ def test_generated_reportlets(bids_sessions, ordering):
assert reportlets_num =... | TST: add basic test to ensure subject ID is not stripped |
diff --git a/google-cloud-debugger/test/google/cloud/debugger/backoff_test.rb b/google-cloud-debugger/test/google/cloud/debugger/backoff_test.rb
index <HASH>..<HASH> 100644
--- a/google-cloud-debugger/test/google/cloud/debugger/backoff_test.rb
+++ b/google-cloud-debugger/test/google/cloud/debugger/backoff_test.rb
@@ -1... | Fix intermittent debugger backoff test failures (#<I>) |
diff --git a/telebot/handler_backends.py b/telebot/handler_backends.py
index <HASH>..<HASH> 100644
--- a/telebot/handler_backends.py
+++ b/telebot/handler_backends.py
@@ -5,7 +5,7 @@ import threading
from telebot import apihelper
-class HandlerBackend:
+class HandlerBackend(object):
"""
Class for saving ... | Change class from new-style class to object class |
diff --git a/spyder/plugins/editor/widgets/codeeditor.py b/spyder/plugins/editor/widgets/codeeditor.py
index <HASH>..<HASH> 100644
--- a/spyder/plugins/editor/widgets/codeeditor.py
+++ b/spyder/plugins/editor/widgets/codeeditor.py
@@ -1677,7 +1677,7 @@ class CodeEditor(TextEditBaseWidget):
data = block.use... | Editor: Fix line number of warning actions |
diff --git a/ryu/app/simple_switch.py b/ryu/app/simple_switch.py
index <HASH>..<HASH> 100644
--- a/ryu/app/simple_switch.py
+++ b/ryu/app/simple_switch.py
@@ -84,7 +84,7 @@ class SimpleSwitch(app_manager.RyuApp):
def _port_status_handler(self, ev):
msg = ev.msg
reason = msg.reason
- port_n... | simple_switch: fix port_status_handler
port_no is not a member of msg, but a member of msg.desc. |
diff --git a/lib/nox-server.js b/lib/nox-server.js
index <HASH>..<HASH> 100644
--- a/lib/nox-server.js
+++ b/lib/nox-server.js
@@ -211,8 +211,6 @@ exports.nox = function(requirefun, cookiename, logfun, uglify) {
logfun('serving nox-client.js for ' + page.url + '\n');
- res.writeHead(200, { 'Content-Type': 'text/j... | give <I> response in error cases |
diff --git a/pkg/kube/client.go b/pkg/kube/client.go
index <HASH>..<HASH> 100644
--- a/pkg/kube/client.go
+++ b/pkg/kube/client.go
@@ -274,7 +274,8 @@ func (c *Client) Update(namespace string, originalReader, targetReader io.Reader
originalInfo := original.Get(info)
if originalInfo == nil {
- return fmt.Error... | Show kind in resource-not-found-in-release error
This error occures when resource is not found in helm release:
`Error: UPGRADE FAILED: no resource with the name "redis-cluster-sentinel" found`
Changed to:
`Error: UPGRADE FAILED: no ConfigMap with the name "redis-cluster-sentinel" found`
So now that resource can eas... |
diff --git a/Filter/AssetsUrl.php b/Filter/AssetsUrl.php
index <HASH>..<HASH> 100644
--- a/Filter/AssetsUrl.php
+++ b/Filter/AssetsUrl.php
@@ -40,7 +40,7 @@ class AssetsUrl implements FilterInterface, HashableInterface
$fs = new Filesystem();
$resource = $matches['resource'];
- pr... | Fix in AssetsUrl - there was no support for numbers |
diff --git a/system/rake-support/share/rails-template.rb b/system/rake-support/share/rails-template.rb
index <HASH>..<HASH> 100644
--- a/system/rake-support/share/rails-template.rb
+++ b/system/rake-support/share/rails-template.rb
@@ -27,7 +27,7 @@ else
initializer("session_store.rb") do
<<-INIT
# Configure th... | Check for ActiveRecord::Base before trying to include EmbeddedTasks. |
diff --git a/pirc522/__init__.py b/pirc522/__init__.py
index <HASH>..<HASH> 100644
--- a/pirc522/__init__.py
+++ b/pirc522/__init__.py
@@ -43,7 +43,7 @@ class RFID(object):
irq = threading.Event()
def __init__(self, bus=0, device=0, speed=1000000, pin_rst=22,
- pin_ce=0, pin_irq=18):
+ ... | Variable GPIO.setmode
Let user decide which pinout should be used |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
setup(
name='pyshould',
description='Should style asserts based on pyhamcrest',
- version='0.4.0',
+ version='0.5.0',
url='https://github.com/drslu... | Upped version to <I> |
diff --git a/src/Ingruz/Rest/Controllers/RestDingoController.php b/src/Ingruz/Rest/Controllers/RestDingoController.php
index <HASH>..<HASH> 100644
--- a/src/Ingruz/Rest/Controllers/RestDingoController.php
+++ b/src/Ingruz/Rest/Controllers/RestDingoController.php
@@ -134,7 +134,9 @@ class RestDingoController extends Con... | Change response to DELETE requests in Dingo Controller |
diff --git a/lib/daemon/runner.js b/lib/daemon/runner.js
index <HASH>..<HASH> 100644
--- a/lib/daemon/runner.js
+++ b/lib/daemon/runner.js
@@ -22,7 +22,7 @@ function Runner(conf) {
this.db_poll_stop = this._dbconn.listenTask(function(err, task) {
if (err) {
logger.debug("Runner: Error polling datab... | Fixed undefined this error in runner |
diff --git a/base/db/migrate/20120621135650_add_comment_count_to_activity_object.rb b/base/db/migrate/20120621135650_add_comment_count_to_activity_object.rb
index <HASH>..<HASH> 100644
--- a/base/db/migrate/20120621135650_add_comment_count_to_activity_object.rb
+++ b/base/db/migrate/20120621135650_add_comment_count_to_... | Fix add_comment_count migration
Heads-up @rafaelgg |
diff --git a/metadata.go b/metadata.go
index <HASH>..<HASH> 100644
--- a/metadata.go
+++ b/metadata.go
@@ -1050,7 +1050,7 @@ func (fm *ForceMetadata) MakeZip(files ForceMetadataFiles) (zipdata []byte, err
zipper := zip.NewWriter(zipfile)
for name, data := range files {
name = filepath.ToSlash(name)
- wr, err :... | Fix Zip File Creation on Windows
Use forward slash for paths to files added to the zip file being
deployed. Per the archive/zip documentation, Writer.Create only allows
forward slashes.
Fixes "No package.xml found" error when using `force push` on windows. |
diff --git a/src/Traits/DateTimeTrait.php b/src/Traits/DateTimeTrait.php
index <HASH>..<HASH> 100755
--- a/src/Traits/DateTimeTrait.php
+++ b/src/Traits/DateTimeTrait.php
@@ -32,7 +32,7 @@ trait DateTimeTrait
*
* @return string
*/
- public function createdAt($timeAgo = false, $format = 'l jS \\of F... | Use dmY as default date format |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -73,7 +73,7 @@ setup(name='b2handle',
'in the EUDAT project.'),
long_description=long_description,
classifiers=[
- 'Development Status :: 4 - Beta',
+ 'Development Status :: ... | Change development status classifier from beta to prod/stable |
diff --git a/km3pipe/db.py b/km3pipe/db.py
index <HASH>..<HASH> 100644
--- a/km3pipe/db.py
+++ b/km3pipe/db.py
@@ -329,10 +329,7 @@ class DBManager(object):
cookie_str = str(cookie, 'utf-8') # Python 3
except TypeError:
cookie_str = str(cookie) # Python 2
- print("The followi... | log.debug instead of print. we dont want to confuse the user |
diff --git a/lib/i18n/tasks/logging.rb b/lib/i18n/tasks/logging.rb
index <HASH>..<HASH> 100644
--- a/lib/i18n/tasks/logging.rb
+++ b/lib/i18n/tasks/logging.rb
@@ -25,6 +25,9 @@ module I18n::Tasks::Logging
def log_stderr(*args)
MUTEX.synchronize do
+ # 1. We don't want output from different threads to get... | Explain on why the mutex is needed in logging.rb
Reference <URL> |
diff --git a/src/styles/style_manager.js b/src/styles/style_manager.js
index <HASH>..<HASH> 100755
--- a/src/styles/style_manager.js
+++ b/src/styles/style_manager.js
@@ -212,7 +212,7 @@ StyleManager.mix = function (style, styles) {
// Track which styles were mixed into this one
for (let s of source... | fix population of style's set of `mixed` styles |
diff --git a/lib/barby/outputter/cairo_outputter.rb b/lib/barby/outputter/cairo_outputter.rb
index <HASH>..<HASH> 100644
--- a/lib/barby/outputter/cairo_outputter.rb
+++ b/lib/barby/outputter/cairo_outputter.rb
@@ -1,3 +1,4 @@
+require 'barby/outputter'
require 'cairo'
require 'stringio'
diff --git a/lib/barby/outp... | Require Outputter parent class for Png- and CairoOutputter |
diff --git a/config/environment.js b/config/environment.js
index <HASH>..<HASH> 100644
--- a/config/environment.js
+++ b/config/environment.js
@@ -6,6 +6,9 @@ module.exports = function(environment /*, appConfig */) {
'Nunito:400,700',
'Nunito Sans:400,600,700'
],
+ moment: {
+ includeLocales:... | Ship moment config to consuming app |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -11,7 +11,7 @@ setup(
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# http://packaging.python.org/en/latest/tutorial.html#vers... | version with fixed read of more then <I> files with no extension |
diff --git a/src/Koldy/Http/Mime.php b/src/Koldy/Http/Mime.php
index <HASH>..<HASH> 100644
--- a/src/Koldy/Http/Mime.php
+++ b/src/Koldy/Http/Mime.php
@@ -932,6 +932,7 @@ class Mime
'wmx' => 'video/x-ms-wmx',
'wmz' => 'application/x-msmetafile',
'woff' => 'application/x-font-woff',
+ 'woff2' =... | Added mime type for woff2 file type |
diff --git a/main.js b/main.js
index <HASH>..<HASH> 100644
--- a/main.js
+++ b/main.js
@@ -174,11 +174,9 @@ CrispCache.prototype.set = function (key, value, options, callback) {
options = {};
}
// Set default options
- options = Object.assign({
- staleTtl: this._getDefaultStaleTtl(),
- ... | Fix failing Node v0.x tests |
diff --git a/packages/api-generator/src/helpers/variables.js b/packages/api-generator/src/helpers/variables.js
index <HASH>..<HASH> 100644
--- a/packages/api-generator/src/helpers/variables.js
+++ b/packages/api-generator/src/helpers/variables.js
@@ -192,8 +192,8 @@ const VSelect = {
props: {
parent: 'V... | docs(VSelect): update information on the item slot
on and attrs are only needed if the user has a root v-list-item in the item slot
resolves #<I> |
diff --git a/src/foremast/awslambda/cloudwatch_log_event/cloudwatch_log_event.py b/src/foremast/awslambda/cloudwatch_log_event/cloudwatch_log_event.py
index <HASH>..<HASH> 100644
--- a/src/foremast/awslambda/cloudwatch_log_event/cloudwatch_log_event.py
+++ b/src/foremast/awslambda/cloudwatch_log_event/cloudwatch_log_ev... | fix: changed logic to accept blank filter pattern |
diff --git a/src/plugins/plugin.streaming.js b/src/plugins/plugin.streaming.js
index <HASH>..<HASH> 100644
--- a/src/plugins/plugin.streaming.js
+++ b/src/plugins/plugin.streaming.js
@@ -12,8 +12,6 @@ export default function(Chart) {
var realTimeScale = Chart.scaleService.getScaleConstructor('realtime');
- var re... | Make each chart keep its refresh timer ID |
diff --git a/test/fixtures/es6-export.js b/test/fixtures/es6-export.js
index <HASH>..<HASH> 100644
--- a/test/fixtures/es6-export.js
+++ b/test/fixtures/es6-export.js
@@ -4,4 +4,4 @@ export function exportTest() {
export default function exportTestDefault() {
return gettext('Hi from an ES6 export default!');
-}
\... | Add new lines at the end of fixture files |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.