diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/openupgradelib/openupgrade.py b/openupgradelib/openupgrade.py
index <HASH>..<HASH> 100644
--- a/openupgradelib/openupgrade.py
+++ b/openupgradelib/openupgrade.py
@@ -22,6 +22,7 @@
import sys
import os
import inspect
+import uuid
import logging
from contextlib import contextmanager
from . import openu... | [FIX] support OpenERP version that don't have cr.savepoint |
diff --git a/bcbio/utils.py b/bcbio/utils.py
index <HASH>..<HASH> 100644
--- a/bcbio/utils.py
+++ b/bcbio/utils.py
@@ -113,7 +113,14 @@ def s3_handle(fname):
bucket, key = s3_bucket_key(fname)
s3 = boto.connect_s3()
- s3b = s3.get_bucket(bucket)
+ try:
+ s3b = s3.get_bucket(bucket)
+ except ... | Enable streaming of files from buckets without access permissions. Fix for getting HiSeq X Ten data |
diff --git a/Kernel.php b/Kernel.php
index <HASH>..<HASH> 100644
--- a/Kernel.php
+++ b/Kernel.php
@@ -63,9 +63,15 @@ class Kernel extends Component
$this->container->set($id, $definition);
}
- foreach ($this->config->get('bootstrappers') as $item) {
+ foreach ($this->config->get('... | refactor ManaPHP\Kernel |
diff --git a/lib/lyricfy.rb b/lib/lyricfy.rb
index <HASH>..<HASH> 100644
--- a/lib/lyricfy.rb
+++ b/lib/lyricfy.rb
@@ -36,6 +36,9 @@ module Lyricfy
fetcher = klass.new(artist_name: artist, song_name: song)
if lyric_body = fetcher.search
+ #def lyric_body.to_s
+ #self.join... | Made song.body respond to to_s so that you can easily print lyrics
without using an each iterator |
diff --git a/lib/Doctrine/ODM/PHPCR/UnitOfWork.php b/lib/Doctrine/ODM/PHPCR/UnitOfWork.php
index <HASH>..<HASH> 100644
--- a/lib/Doctrine/ODM/PHPCR/UnitOfWork.php
+++ b/lib/Doctrine/ODM/PHPCR/UnitOfWork.php
@@ -814,7 +814,8 @@ class UnitOfWork
$path = $this->getDocumentId($document);
$session = $this-... | use versionhistory to get all predecessors |
diff --git a/moco-core/src/main/java/com/github/dreamhead/moco/websocket/ActualWebSocketServer.java b/moco-core/src/main/java/com/github/dreamhead/moco/websocket/ActualWebSocketServer.java
index <HASH>..<HASH> 100644
--- a/moco-core/src/main/java/com/github/dreamhead/moco/websocket/ActualWebSocketServer.java
+++ b/moco... | made send connected in websocket server private |
diff --git a/environments/dev/common/config/main-local.php b/environments/dev/common/config/main-local.php
index <HASH>..<HASH> 100644
--- a/environments/dev/common/config/main-local.php
+++ b/environments/dev/common/config/main-local.php
@@ -11,6 +11,9 @@ return [
'mail' => [
'class' => 'yii\swif... | added explicit comment about file transport to mail config
fixes #<I> |
diff --git a/lib/apple_tv_converter.rb b/lib/apple_tv_converter.rb
index <HASH>..<HASH> 100644
--- a/lib/apple_tv_converter.rb
+++ b/lib/apple_tv_converter.rb
@@ -114,6 +114,7 @@ module AppleTvConverter
# ice - Icelandic -> isl
# ita - Italian
# jpn - Japanese
+ # jap - Japanese -> jpn
# kor - Ko... | Convert 'jap' language to 'jpn' |
diff --git a/collector/meminfo_linux.go b/collector/meminfo_linux.go
index <HASH>..<HASH> 100644
--- a/collector/meminfo_linux.go
+++ b/collector/meminfo_linux.go
@@ -45,6 +45,10 @@ func parseMemInfo(r io.Reader) (map[string]float64, error) {
for scanner.Scan() {
line := scanner.Text()
parts := strings.Fields(l... | Fix accidently empty lines in meminfo_linux (#<I>)
* Fix accidently empty lines in meminfo_linux |
diff --git a/core-bundle/tests/Monolog/ContaoTableProcessorTest.php b/core-bundle/tests/Monolog/ContaoTableProcessorTest.php
index <HASH>..<HASH> 100644
--- a/core-bundle/tests/Monolog/ContaoTableProcessorTest.php
+++ b/core-bundle/tests/Monolog/ContaoTableProcessorTest.php
@@ -108,7 +108,12 @@ class ContaoTableProcess... | [Core] Added IPv6 anonymization tests |
diff --git a/activemodel/lib/active_model/secure_password.rb b/activemodel/lib/active_model/secure_password.rb
index <HASH>..<HASH> 100644
--- a/activemodel/lib/active_model/secure_password.rb
+++ b/activemodel/lib/active_model/secure_password.rb
@@ -3,6 +3,7 @@ module ActiveModel
extend ActiveSupport::Concern
... | Initialize #min_cost to avoid warning in Ruby <I> |
diff --git a/lmdb/txn_test.go b/lmdb/txn_test.go
index <HASH>..<HASH> 100644
--- a/lmdb/txn_test.go
+++ b/lmdb/txn_test.go
@@ -6,7 +6,7 @@ import (
"testing"
)
-func TestTxnUpdate(t *testing.T) {
+func TestTxn_Update(t *testing.T) {
env := setup(t)
defer clean(env, t)
@@ -43,7 +43,7 @@ func TestTxnUpdate(t *... | rename txn tests to be consistent with cursor_test.go |
diff --git a/azurerm/resource_arm_virtual_network_gateway.go b/azurerm/resource_arm_virtual_network_gateway.go
index <HASH>..<HASH> 100644
--- a/azurerm/resource_arm_virtual_network_gateway.go
+++ b/azurerm/resource_arm_virtual_network_gateway.go
@@ -349,19 +349,10 @@ func resourceArmVirtualNetworkGatewayDelete(d *sche... | virtual_network_gateway: Removed comments on subnet deletion workaround |
diff --git a/datatableview/columns.py b/datatableview/columns.py
index <HASH>..<HASH> 100644
--- a/datatableview/columns.py
+++ b/datatableview/columns.py
@@ -338,13 +338,16 @@ if get_version().split('.') >= ['1', '6']:
class BooleanColumn(Column):
model_field_class = models.BooleanField
handles_field_classe... | Fix lookup types for boolean/number fields
Relying on the generic Column base class for these is too implicit. |
diff --git a/pages/Category/components/Products/connector.js b/pages/Category/components/Products/connector.js
index <HASH>..<HASH> 100644
--- a/pages/Category/components/Products/connector.js
+++ b/pages/Category/components/Products/connector.js
@@ -18,7 +18,7 @@ const mapStateToProps = (state, props) => ({
* @retur... | PWA-<I> Send offset to action. |
diff --git a/cheroot/test/test_conn.py b/cheroot/test/test_conn.py
index <HASH>..<HASH> 100644
--- a/cheroot/test/test_conn.py
+++ b/cheroot/test/test_conn.py
@@ -804,23 +804,18 @@ def test_Content_Length_Non_Int(test_client):
""" Try a request where Content-Length header is non-compatible
"""
- conn = t... | Rewrite non-int content-length test to use client
Make it a higher-level test |
diff --git a/api/python/setup.py b/api/python/setup.py
index <HASH>..<HASH> 100644
--- a/api/python/setup.py
+++ b/api/python/setup.py
@@ -57,7 +57,7 @@ setup(
'numpy>=1.14.0', # required by pandas, but missing from its dependencies.
'packaging>=16.8',
'pandas>=0.19.2',
- ... | see if pyarrow <I> works in CI (#<I>) |
diff --git a/test/sass/engine_test.rb b/test/sass/engine_test.rb
index <HASH>..<HASH> 100755
--- a/test/sass/engine_test.rb
+++ b/test/sass/engine_test.rb
@@ -115,14 +115,16 @@ class SassEngineTest < Test::Unit::TestCase
def test_exceptions
EXCEPTION_MAP.each do |key, value|
+ line = 10
begin
- ... | [Sass] Test for :line-setting. |
diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -53,9 +53,7 @@ module.exports = class WebappWebpackPlugin {
if (this.options.inject) {
// Hook into the html-webpack-plugin processing and add the html
tap(compilation, 'html-webp... | fix: do not rely on html-webpack-plugin's internals |
diff --git a/src/model/Stats/StatsRepository.php b/src/model/Stats/StatsRepository.php
index <HASH>..<HASH> 100644
--- a/src/model/Stats/StatsRepository.php
+++ b/src/model/Stats/StatsRepository.php
@@ -41,9 +41,9 @@ class StatsRepository extends Repository
public function updateKey($key, $value)
{
- ... | Loading stats value from cache if not too old |
diff --git a/devices.js b/devices.js
index <HASH>..<HASH> 100755
--- a/devices.js
+++ b/devices.js
@@ -1837,6 +1837,14 @@ const devices = [
ota: ota.zigbeeOTA,
},
{
+ zigbeeModel: ['LCF005'],
+ model: '8718696170557',
+ vendor: 'Philips',
+ description: 'Hue Calla outdoor'... | Support Hue Calla Large (#<I>)
Add support of "Hue Calla Large" - my first pull request ever |
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index <HASH>..<HASH> 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -53,12 +53,24 @@ module Poise
def patch_module(mod, name, obj, &block)
class_name = Chef::Mixin::ConvertToClassName.convert_to_class_name(name.to_s)
- raise "#{mod... | Allow redefining stuff if it was us that set it in the first place.
This means you can redefine resources/providers in a nested fashion. |
diff --git a/src/Pho/Kernel/Kernel.php b/src/Pho/Kernel/Kernel.php
index <HASH>..<HASH> 100644
--- a/src/Pho/Kernel/Kernel.php
+++ b/src/Pho/Kernel/Kernel.php
@@ -176,6 +176,8 @@ class Kernel extends Init
/**
* Imports from a given Pho backup file
+ *
+ * @see Kernel::export()
*
* @param str... | switched to php serialize for import/export
otherwise it fails with large files |
diff --git a/index.test.js b/index.test.js
index <HASH>..<HASH> 100644
--- a/index.test.js
+++ b/index.test.js
@@ -3,7 +3,7 @@ Licensed under the MIT license. See LICENSE file in the repository root for full
import { copy, emptyDir, readFile } from "fs-extra";
import path from "path";
-import runTestsFromFileSystem... | removed index file name from import path in tests
using Node module resolution |
diff --git a/marrow/mongo/query/__init__.py b/marrow/mongo/query/__init__.py
index <HASH>..<HASH> 100644
--- a/marrow/mongo/query/__init__.py
+++ b/marrow/mongo/query/__init__.py
@@ -78,7 +78,7 @@ class Ops(Container):
del self.operations[name]
def __iter__(self):
- return iter(self.operations.items())
+ retu... | Make compatible with direct pymongo usage. |
diff --git a/packages/razzle/config/runPlugin.js b/packages/razzle/config/runPlugin.js
index <HASH>..<HASH> 100644
--- a/packages/razzle/config/runPlugin.js
+++ b/packages/razzle/config/runPlugin.js
@@ -6,6 +6,10 @@ function runPlugin(plugin, config, { target, dev }, webpack) {
return runPlugin({ name: plugin }, c... | add support for function as plugin (#<I>) |
diff --git a/test/test_prototype_transforms_functional.py b/test/test_prototype_transforms_functional.py
index <HASH>..<HASH> 100644
--- a/test/test_prototype_transforms_functional.py
+++ b/test/test_prototype_transforms_functional.py
@@ -488,6 +488,15 @@ def perspective_segmentation_mask():
@register_kernel_info_... | [proto] Updated center_crop tests (#<I>)
* [proto] Added missing decorator for center_crop_segmentation_mask tests
* Added center_crop_image_tensor |
diff --git a/src/directives/objectBuilder.js b/src/directives/objectBuilder.js
index <HASH>..<HASH> 100644
--- a/src/directives/objectBuilder.js
+++ b/src/directives/objectBuilder.js
@@ -31,14 +31,7 @@ module.exports = function() {
'</div>',
replace: true,
link: function($scope) {
- $scope... | FOR-<I>: Improved 'objectBuilder' directive. |
diff --git a/insteonplm/tools.py b/insteonplm/tools.py
index <HASH>..<HASH> 100644
--- a/insteonplm/tools.py
+++ b/insteonplm/tools.py
@@ -62,7 +62,7 @@ def console(loop, log, devicelist):
if 1 == 1:
device = conn.protocol.devices.get_device('14627a')
- device.lightOnLevel.connect(self.async_ligh... | Updated tools.py for testing |
diff --git a/docs/pages/upgradeGuide/index.js b/docs/pages/upgradeGuide/index.js
index <HASH>..<HASH> 100644
--- a/docs/pages/upgradeGuide/index.js
+++ b/docs/pages/upgradeGuide/index.js
@@ -264,6 +264,32 @@ const customFilter = createFilter({
See the [Advanced Guide](/advanced) for more details and examples.
+## ... | Update docs to add the single-value stored as string use case
closes #<I> |
diff --git a/lib/songbirdsh/player.rb b/lib/songbirdsh/player.rb
index <HASH>..<HASH> 100644
--- a/lib/songbirdsh/player.rb
+++ b/lib/songbirdsh/player.rb
@@ -39,7 +39,7 @@ module Songbirdsh
puts "track with id #{id} did not refer to a file"
next
end
- puts "playing #{id.to... | fixed minor issue with reporting base <I> numbers (instead of <I>) |
diff --git a/packages/tabs/src/Tab.js b/packages/tabs/src/Tab.js
index <HASH>..<HASH> 100644
--- a/packages/tabs/src/Tab.js
+++ b/packages/tabs/src/Tab.js
@@ -98,7 +98,7 @@ Tab.propTypes = {
/**
* Sets the label of a tab
*/
- label: PropTypes.string,
+ label: PropTypes.node,
/**
* Function to modify... | feat: Tab label to accept a node |
diff --git a/src/GameQ/Filters/Normalize.php b/src/GameQ/Filters/Normalize.php
index <HASH>..<HASH> 100644
--- a/src/GameQ/Filters/Normalize.php
+++ b/src/GameQ/Filters/Normalize.php
@@ -81,7 +81,6 @@ class Normalize extends Base
}
$data['filtered'][$server->id()] = $result;
- file_put_conten... | Removed debug that was missed. |
diff --git a/src/main/java/com/tomgibara/bits/BitStore.java b/src/main/java/com/tomgibara/bits/BitStore.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/tomgibara/bits/BitStore.java
+++ b/src/main/java/com/tomgibara/bits/BitStore.java
@@ -547,6 +547,7 @@ public interface BitStore extends Mutability<BitStore>, C... | Guards against null comparator. |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ setup(
packages=find_packages(),
include_package_data=True,
install_requires=[
- 'vr.runners>=2.8',
+ 'vr.runners>=2.10,<3',
'path.py>=7.1',
'yg.lockfile',
... | Bumping vr.runners |
diff --git a/provision/docker/containers_test.go b/provision/docker/containers_test.go
index <HASH>..<HASH> 100644
--- a/provision/docker/containers_test.go
+++ b/provision/docker/containers_test.go
@@ -7,6 +7,7 @@ package docker
import (
"io/ioutil"
"net/http"
+ "regexp"
"strings"
dtesting "github.com/fsouz... | provision/docker: make test more reliable
The containers are moved in parallel, so we cannot guarantee the order
of the messages, here's what happens:
- the first message is always "Moving 2 units"
- the second message is always "Moving unit 1... from localhost ->
unknown"
- the third message might be "Moving u... |
diff --git a/lib/models.js b/lib/models.js
index <HASH>..<HASH> 100644
--- a/lib/models.js
+++ b/lib/models.js
@@ -717,6 +717,7 @@ class ContentProfileRule {
constructor(path = []) {
this._path = path; // Identifier[]
this._mustSupport = false; // boolean
+ this._noProfile = false; // boolean
}
//... | Added no profile to ContentProfileRule class |
diff --git a/dvc/fs/base.py b/dvc/fs/base.py
index <HASH>..<HASH> 100644
--- a/dvc/fs/base.py
+++ b/dvc/fs/base.py
@@ -273,7 +273,7 @@ class FileSystem:
callback: FsspecCallback = DEFAULT_CALLBACK,
**kwargs,
) -> None:
- size = kwargs.get("size")
+ size = kwargs.pop("size")
... | fs: do not pass size to underlying fs.put_file |
diff --git a/h2o-py/tests/testdir_jira/pyunit_pubdev_5352.py b/h2o-py/tests/testdir_jira/pyunit_pubdev_5352.py
index <HASH>..<HASH> 100644
--- a/h2o-py/tests/testdir_jira/pyunit_pubdev_5352.py
+++ b/h2o-py/tests/testdir_jira/pyunit_pubdev_5352.py
@@ -13,6 +13,10 @@ def pubdev_5352():
drf_checkpoint = H2ORandomFore... | Final checkpointed model number of trees assertion added |
diff --git a/src/sentry_plugins/__init__.py b/src/sentry_plugins/__init__.py
index <HASH>..<HASH> 100644
--- a/src/sentry_plugins/__init__.py
+++ b/src/sentry_plugins/__init__.py
@@ -3,5 +3,23 @@ from __future__ import absolute_import
try:
VERSION = __import__('pkg_resources') \
.get_distribution('sentry... | Auto hook up webpack watcher process for `devserver` |
diff --git a/hazelcast/src/main/java/com/hazelcast/config/MapStoreConfig.java b/hazelcast/src/main/java/com/hazelcast/config/MapStoreConfig.java
index <HASH>..<HASH> 100644
--- a/hazelcast/src/main/java/com/hazelcast/config/MapStoreConfig.java
+++ b/hazelcast/src/main/java/com/hazelcast/config/MapStoreConfig.java
@@ -3... | Fixed wrong package name in JavaDoc of MapStoreConfig. |
diff --git a/lib/puppet/parser/resource.rb b/lib/puppet/parser/resource.rb
index <HASH>..<HASH> 100644
--- a/lib/puppet/parser/resource.rb
+++ b/lib/puppet/parser/resource.rb
@@ -66,6 +66,8 @@ class Puppet::Parser::Resource < Puppet::Resource
# is drawn from the class to the stage. The stage for containment
# ... | Maint: Fix a #<I> introduced log inconsistency
When we moved code from the compiler to parser/resource, we lost
a conditional that prevented defined resources from gaining containment
edges to stages. Adding a stage to a defined resource was usually
harmless, but it violated the invariant of "resources should only hav... |
diff --git a/raven/transport.py b/raven/transport.py
index <HASH>..<HASH> 100644
--- a/raven/transport.py
+++ b/raven/transport.py
@@ -80,9 +80,6 @@ class UDPTransport(Transport):
udp_socket = None
def compute_scope(self, url, scope):
- netloc = url.hostname
- netloc += ':%s' % url... | Throw an error if a port is not specified in the UDP transport |
diff --git a/geist/backends/_x11_common.py b/geist/backends/_x11_common.py
index <HASH>..<HASH> 100644
--- a/geist/backends/_x11_common.py
+++ b/geist/backends/_x11_common.py
@@ -51,11 +51,12 @@ class GeistXBase(object):
def display(self):
return self._display
- def create_process(self, command, shel... | Take env as a specific kwarg |
diff --git a/Tests/LocaleTest.php b/Tests/LocaleTest.php
index <HASH>..<HASH> 100644
--- a/Tests/LocaleTest.php
+++ b/Tests/LocaleTest.php
@@ -11,7 +11,6 @@
namespace Symfony\Component\Locale\Tests;
-use Symfony\Component\Intl\Intl;
use Symfony\Component\Intl\Util\IntlTestHelper;
use Symfony\Component\Locale\Loc... | Fix phpdoc and coding standards
This removes the unused use statements which were not catched by
PHP-CS-Fixer because of string occurences. It also fixes some invalid
phpdoc (scalar is not recognized as a valid type for instance). |
diff --git a/moto/organizations/models.py b/moto/organizations/models.py
index <HASH>..<HASH> 100644
--- a/moto/organizations/models.py
+++ b/moto/organizations/models.py
@@ -157,6 +157,11 @@ class OrganizationsBackend(BaseBackend):
return self.org.describe()
def describe_organization(self):
+ if... | organizations support: add exception handling for describe_organizations |
diff --git a/src/Environment.php b/src/Environment.php
index <HASH>..<HASH> 100644
--- a/src/Environment.php
+++ b/src/Environment.php
@@ -48,7 +48,7 @@ class Environment
$this->identifyHostname();
// Identifies the current hostname, sets the binding using the native resolving strategy.
... | Apply fixes from StyleCI (#<I>) |
diff --git a/src/ListensForStorageOpportunities.php b/src/ListensForStorageOpportunities.php
index <HASH>..<HASH> 100644
--- a/src/ListensForStorageOpportunities.php
+++ b/src/ListensForStorageOpportunities.php
@@ -85,7 +85,9 @@ trait ListensForStorageOpportunities
if (empty(static::$processingJobs)) {
... | Avoid jobs recording stop if queue driver is sync |
diff --git a/client.go b/client.go
index <HASH>..<HASH> 100644
--- a/client.go
+++ b/client.go
@@ -856,13 +856,6 @@ func (me *Client) downloadedChunk(t *torrent, c *connection, msg *pp.Message) er
}
me.dataReady(dataSpec{t.InfoHash, req})
- // Cancel pending requests for this chunk.
- for _, c := range t.Conns {
... | Reorder actions after a chunk is received |
diff --git a/src/greplin/scales/graphite.py b/src/greplin/scales/graphite.py
index <HASH>..<HASH> 100644
--- a/src/greplin/scales/graphite.py
+++ b/src/greplin/scales/graphite.py
@@ -84,7 +84,7 @@ class GraphitePusher(object):
value = None
logging.exception('Error when calling stat function fo... | Graphite pusher bugfix
Previously the first forbidden key would disqualify all other keys in
that stat. |
diff --git a/proton-c/bindings/python/proton/utils.py b/proton-c/bindings/python/proton/utils.py
index <HASH>..<HASH> 100644
--- a/proton-c/bindings/python/proton/utils.py
+++ b/proton-c/bindings/python/proton/utils.py
@@ -109,12 +109,12 @@ class BlockingReceiver(BlockingLink):
if credit: receiver.flow(credit)... | Changed name of method from fetch to receive |
diff --git a/template/config.js b/template/config.js
index <HASH>..<HASH> 100644
--- a/template/config.js
+++ b/template/config.js
@@ -1,16 +1,16 @@
var config = {
- param1: '', // example
- param2: process.env.NODE_ENV === 'production' ? 'foo' : 'bar', // example
- git: {
- remoteList: ['origin', 'heroku'] // add an... | modified the config js according to standardjs |
diff --git a/src/layouts/ltrTreeLayout/ranker.js b/src/layouts/ltrTreeLayout/ranker.js
index <HASH>..<HASH> 100644
--- a/src/layouts/ltrTreeLayout/ranker.js
+++ b/src/layouts/ltrTreeLayout/ranker.js
@@ -54,7 +54,7 @@ function normalizeRanks (graph) {
}
}
-function forcePrimaryRankPromotions (graph, entryNodeName)... | Use 'INTERNET' as default entryNodeName for backward compatibility |
diff --git a/src/test/java/water/JUnitRunner.java b/src/test/java/water/JUnitRunner.java
index <HASH>..<HASH> 100644
--- a/src/test/java/water/JUnitRunner.java
+++ b/src/test/java/water/JUnitRunner.java
@@ -1,6 +1,6 @@
package water;
-import hex.NeuralNetSpiralsTest;
+import hex.*;
import org.apache.commons.lang.Ar... | Disable NeuralNet Iris comparison against reference. Already done indirectly by comparing against NN, which is compared against the reference. |
diff --git a/modules/aggregation-layers/src/screen-grid-layer/screen-grid-layer.js b/modules/aggregation-layers/src/screen-grid-layer/screen-grid-layer.js
index <HASH>..<HASH> 100644
--- a/modules/aggregation-layers/src/screen-grid-layer/screen-grid-layer.js
+++ b/modules/aggregation-layers/src/screen-grid-layer/screen... | Fix ScreenGridLayer picking error w/ cpu aggregation (#<I>) |
diff --git a/pandas/tseries/tests/test_timeseries.py b/pandas/tseries/tests/test_timeseries.py
index <HASH>..<HASH> 100644
--- a/pandas/tseries/tests/test_timeseries.py
+++ b/pandas/tseries/tests/test_timeseries.py
@@ -2507,7 +2507,7 @@ class TestTimestamp(tm.TestCase):
import pytz
def compare(x,y):... | CLN: use assertEqual over assert_ for better exception messages |
diff --git a/gandi/cli/commands/vm.py b/gandi/cli/commands/vm.py
index <HASH>..<HASH> 100644
--- a/gandi/cli/commands/vm.py
+++ b/gandi/cli/commands/vm.py
@@ -203,7 +203,7 @@ def delete(gandi, background, force, resource):
'and the created login.')
@click.option('--hostname', default=None,
... | vm: choose HVM image as the default one |
diff --git a/integration_tests/web/test_async_web_client.py b/integration_tests/web/test_async_web_client.py
index <HASH>..<HASH> 100644
--- a/integration_tests/web/test_async_web_client.py
+++ b/integration_tests/web/test_async_web_client.py
@@ -123,7 +123,7 @@ class TestAsyncWebClient(unittest.TestCase):
... | Fix never-awaited coro in integration tests |
diff --git a/lib/nydp/pair.rb b/lib/nydp/pair.rb
index <HASH>..<HASH> 100644
--- a/lib/nydp/pair.rb
+++ b/lib/nydp/pair.rb
@@ -74,12 +74,12 @@ class Nydp::Pair
def compile_to_ruby
a,x = [], self
- while x
+ while x.is_a?(Nydp::Pair)
a << x.car.compile_to_ruby
x = x.cdr
end
- "Nyd... | pair: nonrecursive implementation of #to_a, and other small fixes |
diff --git a/src/TokenRemover.php b/src/TokenRemover.php
index <HASH>..<HASH> 100644
--- a/src/TokenRemover.php
+++ b/src/TokenRemover.php
@@ -17,7 +17,10 @@ final class TokenRemover
{
self::removeTrailingHorizontalWhitespaces($tokens, $tokens->getNonEmptySibling($index, -1));
- self::removeLeadi... | TokenRemover - fix for comment as last element |
diff --git a/src/Plugin.php b/src/Plugin.php
index <HASH>..<HASH> 100644
--- a/src/Plugin.php
+++ b/src/Plugin.php
@@ -99,6 +99,7 @@ class Plugin implements
}
$runtimeUtils = new \Vaimo\ComposerPatches\Utils\RuntimeUtils();
+ $compExecutor = new \Vaimo\ComposerPatches\Compatibility\Executor()... | change V2-style call to repo->write to use copmatibilityExecutor |
diff --git a/gg/scale.go b/gg/scale.go
index <HASH>..<HASH> 100644
--- a/gg/scale.go
+++ b/gg/scale.go
@@ -275,7 +275,7 @@ func defaultRanger(aes string) Ranger {
return &defaultColorRanger{}
case "opacity":
- return NewFloatRanger(0, 1)
+ return NewFloatRanger(0.1, 1)
case "size":
// Default to ranging... | gg: change default opacity range to [<I>,1]
Currently it goes from 0 to 1, but you can't see something that 0%
opaque, so bring up the lower bound to where it's visible. |
diff --git a/resources/assets/build/config.js b/resources/assets/build/config.js
index <HASH>..<HASH> 100644
--- a/resources/assets/build/config.js
+++ b/resources/assets/build/config.js
@@ -20,7 +20,6 @@ const config = merge({
root: rootPath,
assets: path.join(rootPath, 'resources/assets'),
dist: path.j... | Don't need this any more! :( |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -72,7 +72,7 @@ setup(
name='pyspool',
version=find_version('spool', '__init__.py'),
url='https://github.com/ascribe/pyspool',
- license='Apache Software License',
+ license='Apache2',
author='pyspool ... | Fixed the license value in setup.py
Changed it from "Apache" to "Apache2". Note that the other license string,
`'License :: OSI Approved :: Apache Software License'` is correct: it [should not contain a 2](<URL>). |
diff --git a/mongo_connector/doc_managers/mongo_doc_manager.py b/mongo_connector/doc_managers/mongo_doc_manager.py
index <HASH>..<HASH> 100644
--- a/mongo_connector/doc_managers/mongo_doc_manager.py
+++ b/mongo_connector/doc_managers/mongo_doc_manager.py
@@ -55,8 +55,6 @@ class DocManager(DocManagerBase):
exce... | Don't create an index on '_ts' when replicating to MongoDB, since this causes continuously growing index names like '__mongo_connector.__mongo_connector.__mongo_connector.<...>'. |
diff --git a/imbox/imap.py b/imbox/imap.py
index <HASH>..<HASH> 100644
--- a/imbox/imap.py
+++ b/imbox/imap.py
@@ -11,22 +11,19 @@ class ImapTransport(object):
def __init__(self, hostname, port=None, ssl=True, usesslcontext=True):
self.hostname = hostname
self.port = port
+ kwargs = {}
... | Fix IMAP transport instantiation
This reverts the approach to IMAP transport instantiation back to how it
was done prior to 2a<I>b6 which introduced the usesslcontext parameter.
This reduces code duplication and importantly make instantiation work
again because self.IMAP4 and self.IMAP4_SSL do not exist. |
diff --git a/src/sultan/echo/__init__.py b/src/sultan/echo/__init__.py
index <HASH>..<HASH> 100644
--- a/src/sultan/echo/__init__.py
+++ b/src/sultan/echo/__init__.py
@@ -4,7 +4,14 @@ from sultan.echo.colorlog import StreamHandler, ColoredFormatter
handler = StreamHandler()
handler.setFormatter(ColoredFormatter(
- ... | Made better color scheme for logging. |
diff --git a/src/Artifact.js b/src/Artifact.js
index <HASH>..<HASH> 100644
--- a/src/Artifact.js
+++ b/src/Artifact.js
@@ -152,8 +152,14 @@ class Artifact extends OIPObject {
* @param {number} time - The Timestamp you wish to set the Artifact to
*/
setTimestamp(time){
- if (typeof time === "number")
- this.a... | Store timestamp in seconds instead of miliseconds |
diff --git a/ipywidgets/widgets/widget_selection.py b/ipywidgets/widgets/widget_selection.py
index <HASH>..<HASH> 100644
--- a/ipywidgets/widgets/widget_selection.py
+++ b/ipywidgets/widgets/widget_selection.py
@@ -166,6 +166,7 @@ class _Selection(DescriptionWidget, ValueWidget, CoreWidget):
# Select the fir... | Fix options initialization logic for selection widgets |
diff --git a/lxc/copy.go b/lxc/copy.go
index <HASH>..<HASH> 100644
--- a/lxc/copy.go
+++ b/lxc/copy.go
@@ -135,6 +135,10 @@ func (c *cmdCopy) copyContainer(conf *config.Config, sourceResource string,
var op lxd.RemoteOperation
if shared.IsSnapshot(sourceName) {
+ if containerOnly {
+ return fmt.Errorf(i18n.G("... | lxc/copy: --container-only is meaningless for snapshots |
diff --git a/src/CatLab/Accounts/Models/User.php b/src/CatLab/Accounts/Models/User.php
index <HASH>..<HASH> 100644
--- a/src/CatLab/Accounts/Models/User.php
+++ b/src/CatLab/Accounts/Models/User.php
@@ -208,10 +208,14 @@ class User implements \Neuron\Interfaces\Models\User
*/
public function getDisplayName($... | Make sure User::getDisplayName() always returns something. |
diff --git a/executor/oci/mounts_test.go b/executor/oci/mounts_test.go
index <HASH>..<HASH> 100644
--- a/executor/oci/mounts_test.go
+++ b/executor/oci/mounts_test.go
@@ -3,7 +3,7 @@ package oci
import (
"testing"
- "github.com/stretchr/testify/require"
+ "github.com/stretchr/testify/assert"
)
func TestHasPref... | Run all the hasPrefix test-cases, even if one fails
This makes it easier to see what's gone wrong if they start failing. |
diff --git a/javamelody-for-spring-boot/src/main/java/hello/JavaMelodyConfiguration.java b/javamelody-for-spring-boot/src/main/java/hello/JavaMelodyConfiguration.java
index <HASH>..<HASH> 100644
--- a/javamelody-for-spring-boot/src/main/java/hello/JavaMelodyConfiguration.java
+++ b/javamelody-for-spring-boot/src/main/j... | adding aspectjweaver dependency is better |
diff --git a/lib/git_diff/diff_file.rb b/lib/git_diff/diff_file.rb
index <HASH>..<HASH> 100644
--- a/lib/git_diff/diff_file.rb
+++ b/lib/git_diff/diff_file.rb
@@ -15,8 +15,8 @@ module GitDiff
def <<(string)
return if extract_diff_meta_data(string)
- if(hunk = Hunk.from_string(string))
- add_hu... | Remove extraneous method Hunk.from_string. |
diff --git a/findbugs/src/java/edu/umd/cs/findbugs/FindBugs.java b/findbugs/src/java/edu/umd/cs/findbugs/FindBugs.java
index <HASH>..<HASH> 100644
--- a/findbugs/src/java/edu/umd/cs/findbugs/FindBugs.java
+++ b/findbugs/src/java/edu/umd/cs/findbugs/FindBugs.java
@@ -198,6 +198,8 @@ public class FindBugs implements Cons... | If we get an IOException trying to add a file to the repository,
make sure the filename is included in the exception.
git-svn-id: <URL> |
diff --git a/txaws/_auth_v4.py b/txaws/_auth_v4.py
index <HASH>..<HASH> 100644
--- a/txaws/_auth_v4.py
+++ b/txaws/_auth_v4.py
@@ -1,13 +1,13 @@
# Licenced under the txaws licence available at /LICENSE in the txaws source.
"""
-AWS authorization, version 4
+AWS authorization, version 4.
"""
-import attr
-
import ha... | Clean up docstrings and imports |
diff --git a/src/gl/gl_texture.js b/src/gl/gl_texture.js
index <HASH>..<HASH> 100644
--- a/src/gl/gl_texture.js
+++ b/src/gl/gl_texture.js
@@ -25,6 +25,12 @@ export default function GLTexture (gl, name, options = {}) {
// TODO: better support for non-URL sources: canvas/video elements, raw pixel buffers
thi... | clean up previous texture when re-creating w/same name |
diff --git a/application/tests/_ci_phpunit_test/autoloader.php b/application/tests/_ci_phpunit_test/autoloader.php
index <HASH>..<HASH> 100644
--- a/application/tests/_ci_phpunit_test/autoloader.php
+++ b/application/tests/_ci_phpunit_test/autoloader.php
@@ -19,5 +19,6 @@ spl_autoload_register(function ($class)
});
... | Fix bug which constant SYSTEM_PATH is missing |
diff --git a/lib/graphql/schema/warden.rb b/lib/graphql/schema/warden.rb
index <HASH>..<HASH> 100644
--- a/lib/graphql/schema/warden.rb
+++ b/lib/graphql/schema/warden.rb
@@ -138,16 +138,18 @@ module GraphQL
def visible_type?(type_defn)
return false unless visible?(type_defn)
- referenced = ref... | break up visible_type? in smaller methods |
diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -132,6 +132,7 @@ RpcClient.prototype.batch = function(batchCallback, resultCallback) {
};
RpcClient.callspec = {
+ abandonTransaction: 'str',
addMultiSigAddress: '',
addNode: '',
backupWallet: '', | added abandonTransaction method to spec |
diff --git a/lib/rabbitmq/util.rb b/lib/rabbitmq/util.rb
index <HASH>..<HASH> 100644
--- a/lib/rabbitmq/util.rb
+++ b/lib/rabbitmq/util.rb
@@ -4,7 +4,8 @@ class RabbitMQ::FFI::Error < RuntimeError; end
module RabbitMQ::Util
class << self
- def error_check rc
+ def error_check rc=nil
+ rc ||= yield
... | Add block form to Util.error_check. |
diff --git a/lib/IDS/Converter.php b/lib/IDS/Converter.php
index <HASH>..<HASH> 100644
--- a/lib/IDS/Converter.php
+++ b/lib/IDS/Converter.php
@@ -561,6 +561,9 @@ class IDS_Converter
$value
);
+ // normalize separation char repetion
+ $value = preg_replace('/([.+~=\-])\1{2,}/m', '$1', $value);... | added code to deal with abnormal repetiton of separation chars
git-svn-id: <URL> |
diff --git a/classes/MUtil/Ra/RaObject.php b/classes/MUtil/Ra/RaObject.php
index <HASH>..<HASH> 100644
--- a/classes/MUtil/Ra/RaObject.php
+++ b/classes/MUtil/Ra/RaObject.php
@@ -84,6 +84,17 @@ class RaObject extends \ArrayObject implements \MUtil_Registry_TargetInterface
}
/**
+ *
+ * @param mixed ... | RaObject should use it's props as a normal object |
diff --git a/functions/timber-post.php b/functions/timber-post.php
index <HASH>..<HASH> 100644
--- a/functions/timber-post.php
+++ b/functions/timber-post.php
@@ -30,7 +30,11 @@ class TimberPost extends TimberCore implements TimberCoreInterface {
* @return \TimberPost TimberPost object -- woo!
*/
funct... | ref #<I> -- changed TimberPost to prefer data from $wp_query before get_the_ID |
diff --git a/src/Model/Table/QueueProcessesTable.php b/src/Model/Table/QueueProcessesTable.php
index <HASH>..<HASH> 100644
--- a/src/Model/Table/QueueProcessesTable.php
+++ b/src/Model/Table/QueueProcessesTable.php
@@ -66,9 +66,7 @@ class QueueProcessesTable extends Table {
'bindingKey' => 'workerkey',
'prope... | remove conditions from hasOne CurrentQueuedJobs Assoc so failed, re-run jobs are still being shown |
diff --git a/client/deis.py b/client/deis.py
index <HASH>..<HASH> 100755
--- a/client/deis.py
+++ b/client/deis.py
@@ -600,7 +600,9 @@ class DeisClient(object):
Usage: deis apps:run <command>...
"""
- app = self._session.app
+ app = args.get('--app')
+ if not app:
+ a... | feat(client): add --app option to apps:run
All of the other apps commands have a --app option. This commit
introduces that option to the apps:run command as well.
fixes #<I> |
diff --git a/query/src/test/java/org/infinispan/query/backend/KeyTransformationHandlerTest.java b/query/src/test/java/org/infinispan/query/backend/KeyTransformationHandlerTest.java
index <HASH>..<HASH> 100644
--- a/query/src/test/java/org/infinispan/query/backend/KeyTransformationHandlerTest.java
+++ b/query/src/test/j... | ISPN-<I> Make it easier to spot expected exceptions in the test |
diff --git a/pywindow/molecular.py b/pywindow/molecular.py
index <HASH>..<HASH> 100644
--- a/pywindow/molecular.py
+++ b/pywindow/molecular.py
@@ -121,7 +121,7 @@ class Molecule(object):
self.MW = molecular_weight(self.elements)
return self.MW
- def save_molecule_json(self, filepath=None, molecul... | Changed the names of function for saving output and molecule |
diff --git a/src/main/java/com/xebia/incubator/xebium/ScreenCapture.java b/src/main/java/com/xebia/incubator/xebium/ScreenCapture.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/xebia/incubator/xebium/ScreenCapture.java
+++ b/src/main/java/com/xebia/incubator/xebium/ScreenCapture.java
@@ -71,11 +71,12 @@ class... | Initialize index file early when screenshots are triggered by errors |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -49,7 +49,7 @@ CONSOLE_SCRIPTS = [
py_version = platform.python_version()
-_APITOOLS_VERSION = '0.5.26'
+_APITOOLS_VERSION = '0.5.27'
with open('README.rst') as fileobj:
README = fileobj.read() | Update for <I> release. (#<I>) |
diff --git a/test/test_blackbox.py b/test/test_blackbox.py
index <HASH>..<HASH> 100644
--- a/test/test_blackbox.py
+++ b/test/test_blackbox.py
@@ -7,7 +7,7 @@ from pyphi import compute, config, macro, models, Network, utils
# TODO: move these to examples.py
-@pytest.mark.slow
+@pytest.mark.veryslow
def test_basic... | Mark basic propogation delay test as `veryslow` |
diff --git a/webapps/webapp/src/main/webapp/app/cockpit/directives/stateCircle.js b/webapps/webapp/src/main/webapp/app/cockpit/directives/stateCircle.js
index <HASH>..<HASH> 100644
--- a/webapps/webapp/src/main/webapp/app/cockpit/directives/stateCircle.js
+++ b/webapps/webapp/src/main/webapp/app/cockpit/directives/stat... | fix(cockpit/dashboard): fix the missing state circle |
diff --git a/src/Testing/TestCase.php b/src/Testing/TestCase.php
index <HASH>..<HASH> 100644
--- a/src/Testing/TestCase.php
+++ b/src/Testing/TestCase.php
@@ -42,6 +42,6 @@ abstract class TestCase extends BaseTestCase
protected function getTestName()
{
- return class_basename(static::class) . '::' . ... | Apply fixes from StyleCI (#9) |
diff --git a/test/images/agnhost/guestbook/guestbook.go b/test/images/agnhost/guestbook/guestbook.go
index <HASH>..<HASH> 100644
--- a/test/images/agnhost/guestbook/guestbook.go
+++ b/test/images/agnhost/guestbook/guestbook.go
@@ -84,14 +84,14 @@ func registerNode(registerTo, port string) {
for time.Since(start) < ti... | Improve error messages in agnhost/guestbook
This updates the error messages when registering a
node to be more explicit about what error occurred
and how long it will wait to retry. |
diff --git a/src/client/actions/GuildMemberRemove.js b/src/client/actions/GuildMemberRemove.js
index <HASH>..<HASH> 100644
--- a/src/client/actions/GuildMemberRemove.js
+++ b/src/client/actions/GuildMemberRemove.js
@@ -8,8 +8,8 @@ class GuildMemberRemoveAction extends Action {
let member = null;
if (guild) {
... | fix(Guild): memberCount not decrementing when an uncached member leaves
This leads to GuildMemberStore#_fetchMany to always reject
because it expects more member than possible.
Also no longer call the GuildMemberRemove handler locally
to not decrement twice. |
diff --git a/core-bundle/src/Image/Studio/Figure.php b/core-bundle/src/Image/Studio/Figure.php
index <HASH>..<HASH> 100644
--- a/core-bundle/src/Image/Studio/Figure.php
+++ b/core-bundle/src/Image/Studio/Figure.php
@@ -25,7 +25,7 @@ use Contao\Template;
*
* Wherever possible, the actual data is only requested/built... | Add note that Figure will be final in Contao 5 (see #<I>)
Description
-----------
| Q | A
| -----------------| ---
| Fixed issues | See #<I>
| Docs PR or issue | -
Adds a reminder, that the `@final` annotation will be upgraded to `final` in Contao 5.
Commits
-------
6e<I> add note that Figure w... |
diff --git a/src/Search.php b/src/Search.php
index <HASH>..<HASH> 100644
--- a/src/Search.php
+++ b/src/Search.php
@@ -159,8 +159,6 @@ class Search {
$query = '(' . implode(') AND (', $q) . ')';
} else if (count($q) > 0) {
$query = $q[0];
- } else {
- return false;
}
// Implode different sort arra... | Removed to allow pagination or sorting without searching. |
diff --git a/src/Illuminate/Console/Scheduling/ScheduleWorkCommand.php b/src/Illuminate/Console/Scheduling/ScheduleWorkCommand.php
index <HASH>..<HASH> 100644
--- a/src/Illuminate/Console/Scheduling/ScheduleWorkCommand.php
+++ b/src/Illuminate/Console/Scheduling/ScheduleWorkCommand.php
@@ -38,7 +38,11 @@ class Schedule... | [8.x] Fix schedule:work command Artisan binary name (#<I>)
* Fix schedule:work command Artisan binary name
* formatting |
diff --git a/core/src/main/java/io/undertow/server/protocol/ajp/AjpServerRequestConduit.java b/core/src/main/java/io/undertow/server/protocol/ajp/AjpServerRequestConduit.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/io/undertow/server/protocol/ajp/AjpServerRequestConduit.java
+++ b/core/src/main/java/io/und... | - fixes the initialization of state and remaining fields in case size is zero (Long.equals(Integer) results always in false; replaced by simpler and faster code). |
diff --git a/src/Curl.php b/src/Curl.php
index <HASH>..<HASH> 100644
--- a/src/Curl.php
+++ b/src/Curl.php
@@ -234,10 +234,6 @@ class Curl
curl_close($ch);
if ($curlInfo['result'] == CURLE_OK) {
$this->onProcess($task, $param);
- if (isset($task[... | Remove auto close for CURLOPT_FILE. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.