hash
stringlengths
40
40
diff
stringlengths
131
26.7k
message
stringlengths
7
694
project
stringlengths
5
67
split
stringclasses
1 value
diff_languages
stringlengths
2
24
02a2fce840a0b5e9293175427d5215e6fa5cbafd
diff --git a/pnc_cli/productmilestones.py b/pnc_cli/productmilestones.py index <HASH>..<HASH> 100644 --- a/pnc_cli/productmilestones.py +++ b/pnc_cli/productmilestones.py @@ -98,9 +98,9 @@ def get_milestone(id): @arg("id", help="ProductMilestone ID to update.", type=types.existing_product_milestone) -@arg("-v, --v...
Bug fix for arg annotation The arg annotation was incorrectly defined, and as such the cli options weren't working as expected. This commit fixes it
project-ncl_pnc-cli
train
py
e728821d6b26e321ce88885d174f73ddfa8f9ec8
diff --git a/pysat/_instrument.py b/pysat/_instrument.py index <HASH>..<HASH> 100644 --- a/pysat/_instrument.py +++ b/pysat/_instrument.py @@ -2291,18 +2291,7 @@ class Instrument(object): new_dict = self._filter_netcdf4_metadata(new_dict, ...
ENH: Removed filter that was already replaced
rstoneback_pysat
train
py
82ab6f7c1f5b4fa150c3938122a78a620d055f23
diff --git a/go/vt/tabletmanager/healthcheck.go b/go/vt/tabletmanager/healthcheck.go index <HASH>..<HASH> 100644 --- a/go/vt/tabletmanager/healthcheck.go +++ b/go/vt/tabletmanager/healthcheck.go @@ -51,7 +51,7 @@ func (r *HealthRecord) Class() string { // IsDuplicate implements history.Deduplicable func (r *HealthR...
Storing pointers to health records in health. So we don't copy them around all the time when displaying them.
vitessio_vitess
train
go
af2c7ce1c333f0ffdef1c40031aab5eb0c245d19
diff --git a/dist/angular-carousel.js b/dist/angular-carousel.js index <HASH>..<HASH> 100644 --- a/dist/angular-carousel.js +++ b/dist/angular-carousel.js @@ -307,7 +307,14 @@ angular.module('angular-carousel').run(['$templateCache', function($templateCach } function ...
Allow nested carousels GetSlidesDOM was looking all the way down the DOM tree. If a carousel had another carousel nested in, the GetSlidesDOM was returning an array containing all the slides from both the parent and the child carousel, causing the topmost slides to have a wrong translation.
revolunet_angular-carousel
train
js
446136e36b6724f780d30af7618d8690fa14982c
diff --git a/Swat/SwatString.php b/Swat/SwatString.php index <HASH>..<HASH> 100644 --- a/Swat/SwatString.php +++ b/Swat/SwatString.php @@ -1008,8 +1008,8 @@ class SwatString extends SwatObject $unit_magnitude = null; - if ($magnitude > 0) { - $magnitude = round($magnitude / 10) * 10; + if ($magnitude >= 0) {...
Fix SwatString::formatBytes() when a magnitude is specified. svn commit r<I>
silverorange_swat
train
php
e5ea7a5483f2ec01ad805bf2ea85cfcf53c300c9
diff --git a/dist/tezos/TezosOperations.js b/dist/tezos/TezosOperations.js index <HASH>..<HASH> 100644 --- a/dist/tezos/TezosOperations.js +++ b/dist/tezos/TezosOperations.js @@ -267,8 +267,8 @@ var TezosOperations; counter: (Number(account.counter) + 1).toString(), gas_limit: '10000',...
Update TezosOperations.js changed the manager_pubkey
Cryptonomic_ConseilJS
train
js
9cb771c69347fe43c4316535e5bde9f2f194d317
diff --git a/spec/unit/resource/catalog_spec.rb b/spec/unit/resource/catalog_spec.rb index <HASH>..<HASH> 100644 --- a/spec/unit/resource/catalog_spec.rb +++ b/spec/unit/resource/catalog_spec.rb @@ -205,7 +205,7 @@ describe Puppet::Resource::Catalog, "when compiling" do end it "should set itself as the cata...
(maint) Fix object_id assertion in catalog spec
puppetlabs_puppet
train
rb
3f66a39e15a71b981e8c5f887a4adc3ad486a45f
diff --git a/bgen_reader/test/test_large_file.py b/bgen_reader/test/test_large_file.py index <HASH>..<HASH> 100644 --- a/bgen_reader/test/test_large_file.py +++ b/bgen_reader/test/test_large_file.py @@ -33,8 +33,8 @@ def test_large_file(capsys): assert_equal(g["probs"].shape, (415, 3)) assert_allclo...
Issue #<I>, genotype part_size
limix_bgen-reader-py
train
py
e457cf4a077dbc152ad42ba8c4a173427f5bd2a9
diff --git a/Neos.Neos/Resources/Public/JavaScript/index.js b/Neos.Neos/Resources/Public/JavaScript/index.js index <HASH>..<HASH> 100644 --- a/Neos.Neos/Resources/Public/JavaScript/index.js +++ b/Neos.Neos/Resources/Public/JavaScript/index.js @@ -14,7 +14,6 @@ menuPanelElements.forEach(panelElement => { const treeElem...
TASK: Remove debug code in tree
neos_neos-development-collection
train
js
5a3f18a55f6e2bb49b25d521288559120177ebc4
diff --git a/lxd/daemon.go b/lxd/daemon.go index <HASH>..<HASH> 100644 --- a/lxd/daemon.go +++ b/lxd/daemon.go @@ -2103,7 +2103,13 @@ func (d *Daemon) nodeRefreshTask(heartbeatData *cluster.APIHeartbeat, isLeader b // Refresh event listeners from heartbeat members (after certificates refreshed if needed). // Run ...
lxd/daemon: Run nodeRefreshTask inside cluster.EventsUpdateListeners as part of wait group Wait until its done before returning to help reason about what is completed when nodeRefreshTask returns.
lxc_lxd
train
go
818985feafcb0ce2b90dccaa41f6443c27bc1090
diff --git a/django_enumfield/tests/test_validators.py b/django_enumfield/tests/test_validators.py index <HASH>..<HASH> 100644 --- a/django_enumfield/tests/test_validators.py +++ b/django_enumfield/tests/test_validators.py @@ -9,7 +9,7 @@ from django_enumfield.validators import validate_available_choice class Valida...
docs: Fix simple typo, convertable -> convertible There is a small typo in django_enumfield/tests/test_validators.py. Should read `convertible` rather than `convertable`.
5monkeys_django-enumfield
train
py
8c6d0440c2fa903388af1121433c71d33b9a9ef9
diff --git a/t.go b/t.go index <HASH>..<HASH> 100644 --- a/t.go +++ b/t.go @@ -80,7 +80,10 @@ func (t *Torrent) Drop() { t.cl.mu.Unlock() } -// Number of bytes of the entire torrent we have completed. +// Number of bytes of the entire torrent we have completed. This is the sum of +// completed pieces, and dirtied ...
Improve Torrent.BytesCompleted comment
anacrolix_torrent
train
go
ed61ab39963f7440cf70d592412e474684f49e5a
diff --git a/src/ContaoCommunityAlliance/DcGeneral/DataDefinition/Definition/DefaultPropertiesDefinition.php b/src/ContaoCommunityAlliance/DcGeneral/DataDefinition/Definition/DefaultPropertiesDefinition.php index <HASH>..<HASH> 100644 --- a/src/ContaoCommunityAlliance/DcGeneral/DataDefinition/Definition/DefaultProperti...
Implement `removeProperty($property)` At the moment `removeProperty` does nothing but validating the argument. This pull request implements the removing
contao-community-alliance_dc-general
train
php
87ef3a265a143db1684b792b2ef2ade973dd59ec
diff --git a/docs/src/ComponentsPage.js b/docs/src/ComponentsPage.js index <HASH>..<HASH> 100644 --- a/docs/src/ComponentsPage.js +++ b/docs/src/ComponentsPage.js @@ -952,6 +952,20 @@ const ComponentsPage = React.createClass({ <h3><Anchor id="utilities-collapse">Collapse</Anchor></h3> ...
Suggest wrapping Collapse child in no-margin node It makes a big difference when you have elements with margin or padding; the animation appears much smoother when the contents are enclosed in a node with zero padding and zero margin (like a raw `<div>`). Here are two examples. * with a div: <URL> The example alre...
react-bootstrap_react-bootstrap
train
js
88563f1a9d20b78fa66dd4c93730c06d1c768db4
diff --git a/spec/performance/benchmark_spec.rb b/spec/performance/benchmark_spec.rb index <HASH>..<HASH> 100644 --- a/spec/performance/benchmark_spec.rb +++ b/spec/performance/benchmark_spec.rb @@ -57,6 +57,6 @@ RSpec.describe FiniteMachine do } end - expect { fsm.next }.to perform_at_least(400).ips +...
Change boundary for ruby <I>
piotrmurach_finite_machine
train
rb
401c763bb0c65f42b1a76a9ab24a2f0c90ff8e20
diff --git a/measure_it.py b/measure_it.py index <HASH>..<HASH> 100644 --- a/measure_it.py +++ b/measure_it.py @@ -55,11 +55,12 @@ def measure_each(iterable, metric = print_metric, name = None): :arg function metric: f(name, 1, time) :arg str name: a name for the stats. """ + it = iter(iterable) ...
fix bug, python 2/3 support
wearpants_instrument
train
py
d5b0d6961b047582efe7ef7f858bd8dcc11f0d15
diff --git a/pymouse/windows.py b/pymouse/windows.py index <HASH>..<HASH> 100644 --- a/pymouse/windows.py +++ b/pymouse/windows.py @@ -57,6 +57,7 @@ class PyMouseEvent(PyMouseEventMeta): def run(self): self.hm.MouseAllButtons = self._click self.hm.MouseMove = self._move + #I think I can ad...
Added a note, as a reminder, that I can add scrolling support
SavinaRoja_PyUserInput
train
py
e91d4165076d7474d20abda83f92d15c7ebc3e81
diff --git a/gddo-server/main.go b/gddo-server/main.go index <HASH>..<HASH> 100644 --- a/gddo-server/main.go +++ b/gddo-server/main.go @@ -963,9 +963,13 @@ func main() { "third_party/jquery.timeago.js", "site.js")) mux.Handle("/-/site.css", staticServer.FilesHandler("site.css")) + mux.Handle("/-/bootstrap.min.c...
gddo-server: Handle static files properly. Add handlers for newly added Bootstrap and jQuery files. These files are stored locally now instead of being fetched from CDN. But those static files are not handled properly in our serve mux, causing the serve keeps requesting them infinitely. Change-Id: Iddc<I>bb<I>f<I>ec<...
golang_gddo
train
go
853ecc70f0e1772b607554e98a714675c1dc5821
diff --git a/tests/test_using.py b/tests/test_using.py index <HASH>..<HASH> 100644 --- a/tests/test_using.py +++ b/tests/test_using.py @@ -249,6 +249,16 @@ class UsingFactoryTestCase(unittest.TestCase): test_object = TestObjectFactory.build() self.assertEqual(test_object.one, 'one') + def test_in...
Add test for dual class/factory inheritance. If it works properly, this would make pylint happy.
FactoryBoy_factory_boy
train
py
b5d8093d9dd15655d31faa7d61f0b2b56fdca8e3
diff --git a/lib/base/properties.js b/lib/base/properties.js index <HASH>..<HASH> 100644 --- a/lib/base/properties.js +++ b/lib/base/properties.js @@ -54,9 +54,11 @@ exports.bind = true * if val is string tries to get this[val] */ exports.ChildConstructor = function (val) { - var typeOf = typeof val - if (typeOf...
ChildConstructor property tries to get .Constructor if the input is a base
vigour-io_vjs
train
js
ab4973d4f23cfb501e3ab834e8836c6383f974fb
diff --git a/upup/pkg/fi/cloudup/awsup/logging_retryer.go b/upup/pkg/fi/cloudup/awsup/logging_retryer.go index <HASH>..<HASH> 100644 --- a/upup/pkg/fi/cloudup/awsup/logging_retryer.go +++ b/upup/pkg/fi/cloudup/awsup/logging_retryer.go @@ -57,7 +57,7 @@ func (l LoggingRetryer) RetryRules(r *request.Request) time.Duratio...
Retry Logging - changing the verbosity of the api retries
kubernetes_kops
train
go
8b3286be6bb5c3c147a93a20778641aab68891dc
diff --git a/api/insight/apirouter.go b/api/insight/apirouter.go index <HASH>..<HASH> 100644 --- a/api/insight/apirouter.go +++ b/api/insight/apirouter.go @@ -26,18 +26,24 @@ const APIVersion = 0 // NewInsightApiRouter returns a new HTTP path router, ApiMux, for the Insight // API, app. func NewInsightApiRouter(app ...
insight: rate limiter needs to check certain headers Also bump the rate lmiit up. In the future this should be configurable.
decred_dcrdata
train
go
b0b70ea609d60de61c3d6dee4e636ea1f4ea738b
diff --git a/AdminModule/presenters/UpdatePresenter.php b/AdminModule/presenters/UpdatePresenter.php index <HASH>..<HASH> 100755 --- a/AdminModule/presenters/UpdatePresenter.php +++ b/AdminModule/presenters/UpdatePresenter.php @@ -40,7 +40,7 @@ class UpdatePresenter extends \AdminModule\BasePresenter { putenv("COM...
Added no interactive mode Added no interactive mode to composer update command
voslartomas_WebCMS2
train
php
a25288d6d6f1d36dd04c351690c52746d51af2f9
diff --git a/lib/elements/bfe_publi_info.py b/lib/elements/bfe_publi_info.py index <HASH>..<HASH> 100644 --- a/lib/elements/bfe_publi_info.py +++ b/lib/elements/bfe_publi_info.py @@ -45,14 +45,19 @@ def format(bfo): number = publication_info.get('n') pages = publication_info.get('c') - if journal != '' a...
Fixed bug when trying to escape 'None' values.
inveniosoftware_invenio-formatter
train
py
d995b138c3894f4233358787b9750b9b9e764e69
diff --git a/tests/Path/InterpolatorTest.php b/tests/Path/InterpolatorTest.php index <HASH>..<HASH> 100644 --- a/tests/Path/InterpolatorTest.php +++ b/tests/Path/InterpolatorTest.php @@ -10,27 +10,6 @@ use Mockery; class InterpolatorTest extends TestCase { - ///** - // * @test - // */ - //function it_sh...
Removed nasty accidental debugging commit
czim_laravel-paperclip
train
php
a4e3d3142d5d2a0b1ae841e0673398efebdaeecc
diff --git a/f90nml/tokenizer.py b/f90nml/tokenizer.py index <HASH>..<HASH> 100644 --- a/f90nml/tokenizer.py +++ b/f90nml/tokenizer.py @@ -22,7 +22,7 @@ class Tokenizer(object): self.prior_delim = None - def parse(self, line, macros={}): + def parse(self, line): """Tokenize a line of Fortran...
Macro support removed from tokenizer I don't see how macros would ever be applied to namelists (unless it was some hefty user-defined thing) so they've been removed. If, for some reason, this is ever needed, it can be checked and applied outside of the tokenizer. This seems to produce a minor speedup (1-2%).
marshallward_f90nml
train
py
3a78a64b05713a96f171e80b3aba51264b21bff7
diff --git a/src/CyberSpectrum/Command/CommandBase.php b/src/CyberSpectrum/Command/CommandBase.php index <HASH>..<HASH> 100644 --- a/src/CyberSpectrum/Command/CommandBase.php +++ b/src/CyberSpectrum/Command/CommandBase.php @@ -180,7 +180,7 @@ abstract class CommandBase extends Command $this->txlang = $inpu...
Fixed bug where skipFiles was not initialized as an array
cyberspectrum_contao-toolbox
train
php
80c9215b66f93becad8476eb5adae329de5b9353
diff --git a/src/Sismo/Contrib/XmppNotifier.php b/src/Sismo/Contrib/XmppNotifier.php index <HASH>..<HASH> 100644 --- a/src/Sismo/Contrib/XmppNotifier.php +++ b/src/Sismo/Contrib/XmppNotifier.php @@ -11,6 +11,9 @@ namespace Sismo\Contrib; +use Sismo\Notifier; +use Sismo\Commit; + // @codeCoverageIgnoreStart /** ...
added missing use statemetns for XmppNotifer
FriendsOfPHP_Sismo
train
php
e27d82dd3d6ceceda92f96db15d5c932ce765735
diff --git a/tests/unit/modules/boto_vpc_test.py b/tests/unit/modules/boto_vpc_test.py index <HASH>..<HASH> 100644 --- a/tests/unit/modules/boto_vpc_test.py +++ b/tests/unit/modules/boto_vpc_test.py @@ -190,6 +190,21 @@ class BotoVpcTestCase(TestCase): self.assertFalse(subnet_creation_result) + @mock_ec...
Added unit tests that verify that subnet deletion reports success/failure correctly.
saltstack_salt
train
py
fdba401c495ad2aaabe75210a7765842c9ef822e
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -6,6 +6,11 @@ version = open("VERSION.txt", "rb").read().strip() deps = ["setuptools"] +if sys.version_info[:2] not in [(2, 6), (2, 7)]: + sys.stderr.write("Sorry, only Python 2.6 and Python 2.7 are supported " + ...
Limit execution of setup.py to Python <I>/<I>
jazzband_python-geojson
train
py
c8602e3572b9bb9d2e26e7fb3700b44b20ff870a
diff --git a/filters/component.js b/filters/component.js index <HASH>..<HASH> 100644 --- a/filters/component.js +++ b/filters/component.js @@ -22,6 +22,7 @@ exports.include = ['*/build/build.js', '*/build/build.css']; exports.exclude = ''; function apply(directory, filePath, options, res, next) { + next = guard(ne...
Timeout component builds after <I> seconds
ForbesLindesay-Unmaintained_jproxy
train
js
5b8855319df7a9e6b114094046b10da4ed8c9e9b
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -66,7 +66,7 @@ ext_modules = [ setup( name = 'dragnet', - version = '1.1.0', + version = '2.0.2', description = 'Extract the main article content (and optionally comments) ...
Update version in setup.py to match pypi release.
dragnet-org_dragnet
train
py
c7c7d1e2a1c224ed6e520ab73dccff8b7e8ab5d6
diff --git a/dojo/nlp/TF_IDF.py b/dojo/nlp/TF_IDF.py index <HASH>..<HASH> 100644 --- a/dojo/nlp/TF_IDF.py +++ b/dojo/nlp/TF_IDF.py @@ -31,6 +31,9 @@ class TF_IDF(BasePreprocessor): self.idf_weighting_scheme = idf_weighting_scheme.lower() self.k = k + self.unique_terms = [] + self.idfs ...
[Update] TF-IDF fit/transform v1
VIVelev_PyDojoML
train
py
30d05ed842af021139f447ca37e327b0dc2c1608
diff --git a/lib/console/init.js b/lib/console/init.js index <HASH>..<HASH> 100644 --- a/lib/console/init.js +++ b/lib/console/init.js @@ -18,7 +18,7 @@ function initConsole(args) { }, args); var baseDir = this.base_dir; - var target = args._[0] ? pathFn.resolve(baseDir, args._[0]) : baseDir; + var target = a...
Fixed the invalid type error while running init with a numeric folder name. (#<I>)
hexojs_hexo-cli
train
js
875b224a9b3468f539333d66bc888367120a375e
diff --git a/pandas/io/formats/style.py b/pandas/io/formats/style.py index <HASH>..<HASH> 100644 --- a/pandas/io/formats/style.py +++ b/pandas/io/formats/style.py @@ -536,7 +536,7 @@ class Styler(StylerRenderer): >>> df = pd.DataFrame([[1,2], [3,4]]) >>> s = df.style.highlight_max(axis=None, ...
skipped doc test (#<I>)
pandas-dev_pandas
train
py
1ace4e607f01b98c42bbcec767e653ca4135ea49
diff --git a/test/interfaces_test.php b/test/interfaces_test.php index <HASH>..<HASH> 100644 --- a/test/interfaces_test.php +++ b/test/interfaces_test.php @@ -45,6 +45,7 @@ class TestOfSpl extends UnitTestCase static $classesToExclude = [ 'SplHeap', // the method compare() is missing ...
exclude RecursiveFilterIterator from mocking
simpletest_simpletest
train
php
da3f92fac4564643113b7722f64e3dd3f8c4af7e
diff --git a/ghost/admin/app/components/gh-billing-iframe.js b/ghost/admin/app/components/gh-billing-iframe.js index <HASH>..<HASH> 100644 --- a/ghost/admin/app/components/gh-billing-iframe.js +++ b/ghost/admin/app/components/gh-billing-iframe.js @@ -13,9 +13,10 @@ export default Component.extend({ let iframe ...
Updated URL and response handling for identity token no-issue This just keeps the admin in line with the changes made in <URL>
TryGhost_Ghost
train
js
1003d05fa479de216a8b1dd6a91204429ef5efc6
diff --git a/tests/Reference/Extension/PhpPecl/Memcached/MemcachedExtensionTest.php b/tests/Reference/Extension/PhpPecl/Memcached/MemcachedExtensionTest.php index <HASH>..<HASH> 100644 --- a/tests/Reference/Extension/PhpPecl/Memcached/MemcachedExtensionTest.php +++ b/tests/Reference/Extension/PhpPecl/Memcached/Memcache...
fixed Memcached unit tests about unreferenced method in any version known
llaville_php-compatinfo-db
train
php
e88c14836e01643d520bc3a16a055007d13ada89
diff --git a/test/StatsTestCases.test.js b/test/StatsTestCases.test.js index <HASH>..<HASH> 100644 --- a/test/StatsTestCases.test.js +++ b/test/StatsTestCases.test.js @@ -184,6 +184,10 @@ describe("StatsTestCases", () => { actual = actual .replace(/\r\n?/g, "\n") .replace(/webpack [^ )]+(\)?) compiled/...
exclude ModuleProfile from snapshot as it's not deterministic
webpack_webpack
train
js
0b0cbb6a4f5626ca6dcacdd372a14fb154199e4e
diff --git a/config/software/chef-init.rb b/config/software/chef-init.rb index <HASH>..<HASH> 100644 --- a/config/software/chef-init.rb +++ b/config/software/chef-init.rb @@ -29,8 +29,8 @@ env = with_embedded_path() env = with_standard_compiler_flags(env) build do - bundle "install" - rake "build" + bundle "inst...
adding :env to all commands on recommendation from @sersut
chef_chef
train
rb
36e6202b204220ce4656b51f881b40fceaf69624
diff --git a/ehforwarderbot/__version__.py b/ehforwarderbot/__version__.py index <HASH>..<HASH> 100644 --- a/ehforwarderbot/__version__.py +++ b/ehforwarderbot/__version__.py @@ -1,3 +1,3 @@ # coding=utf-8 -__version__ = "2.1.1.dev3" +__version__ = "2.1.1"
bump: bumping version: <I>.dev3 -> <I>
blueset_ehForwarderBot
train
py
0a6695f696809943aa3c90bea1bf9b2c99b94d26
diff --git a/grade/report/grader/db/access.php b/grade/report/grader/db/access.php index <HASH>..<HASH> 100644 --- a/grade/report/grader/db/access.php +++ b/grade/report/grader/db/access.php @@ -1,2 +1,29 @@ +<?php // $Id$ +$gradereport_grader_capabilities = array( + 'gradereport/grader:view' => array( + ...
Added two capabilities for the grader report
moodle_moodle
train
php
9b489eae9b4baa7bfae2a573e63e12000abc59aa
diff --git a/src/ReduxTable.js b/src/ReduxTable.js index <HASH>..<HASH> 100644 --- a/src/ReduxTable.js +++ b/src/ReduxTable.js @@ -144,6 +144,7 @@ export default class ReduxTable extends React.Component { <Cell key={selectDataKey(rowData) + key} value={rowData[key]} + row...
pass the whole row value to each cell
a-type_redux-data-table
train
js
e3e464df61df72aef42e9038c43a92ad406ed8dc
diff --git a/src/Node.php b/src/Node.php index <HASH>..<HASH> 100644 --- a/src/Node.php +++ b/src/Node.php @@ -18,5 +18,21 @@ abstract class Node { return $this->parent; } + /** + * Get the ancestor of given type. + * @param string $type + * @return ParentNode + */ + public function getAncestor($typ...
Added Node::getAncestor()
grom358_pharborist
train
php
40475c130f3498cfd3c209633e20a51e89850451
diff --git a/bread/__init__.py b/bread/__init__.py index <HASH>..<HASH> 100644 --- a/bread/__init__.py +++ b/bread/__init__.py @@ -1,5 +1,5 @@ __title__ = 'bread' -__version__ = '1.5.4' +__version__ = '2.0.0' __author__ = 'Alex Rasmussen' __license__ = 'MIT' __copyright__ = 'Copyright 2015 Alex Rasmussen' diff --gi...
Bumping version to <I>
alexras_bread
train
py,py,py
69de7fe59e45348eaac59c4c5adcde01ecd67337
diff --git a/benchmarks/empty_catalog/benchmarker.rb b/benchmarks/empty_catalog/benchmarker.rb index <HASH>..<HASH> 100644 --- a/benchmarks/empty_catalog/benchmarker.rb +++ b/benchmarks/empty_catalog/benchmarker.rb @@ -12,12 +12,15 @@ class Benchmarker end def setup - require 'puppet' - config = File.join...
(perf) Change benchmark:empty_catalog to include measure of startup The intent of this benchmark is to provide measures for optimizing the puppet apply case, not including the startup time skewes the result in favor of the current parser/evaluator as it is loaded as part of startup, and "pops" is loaded lazily when a ...
puppetlabs_puppet
train
rb
7cee88dc3ee7ab7c9c69b0a6e91f78882cddce5b
diff --git a/openpnm/algorithms/GenericTransport.py b/openpnm/algorithms/GenericTransport.py index <HASH>..<HASH> 100644 --- a/openpnm/algorithms/GenericTransport.py +++ b/openpnm/algorithms/GenericTransport.py @@ -438,7 +438,7 @@ class GenericTransport(GenericAlgorithm): # Set tolerance for iterative solvers ...
Set default tol from settings instead of hard code
PMEAL_OpenPNM
train
py
985971be4501f5524c2075c1cd348f41bbd6b138
diff --git a/Octo/Shop/Admin/Controller/ProductController.php b/Octo/Shop/Admin/Controller/ProductController.php index <HASH>..<HASH> 100644 --- a/Octo/Shop/Admin/Controller/ProductController.php +++ b/Octo/Shop/Admin/Controller/ProductController.php @@ -6,7 +6,7 @@ use Octo\Admin\Form as FormElement; use Octo\Admin\C...
Products to use Invoicing/Model/Item.
Block8_Octo
train
php
037c416f7063aafa52b9ac6e0f015c51dc303222
diff --git a/src/atoms/Icon/constants.js b/src/atoms/Icon/constants.js index <HASH>..<HASH> 100644 --- a/src/atoms/Icon/constants.js +++ b/src/atoms/Icon/constants.js @@ -41,6 +41,7 @@ module.exports = { 'chatQuestionPadded', 'checkBlackGreyCircle', 'checkCircle', + 'checkCircleBlue', 'checkMark-...
Add checkCircleBlue to Icon constants (#<I>)
policygenius_athenaeum
train
js
26c9448a1d7bf01396f0c23e602283879113ab5f
diff --git a/lib/wed/wed.js b/lib/wed/wed.js index <HASH>..<HASH> 100644 --- a/lib/wed/wed.js +++ b/lib/wed/wed.js @@ -417,7 +417,9 @@ Editor.prototype._postInitialize = log.wrap(function () { "._real, ._phantom_wrap, .wed-document", function ($root, $added, $removed, $prev, $next, $target) { ...
Addition or removal of text nodes should trigger a revalidation.
mangalam-research_wed
train
js
e592434eec88ee9049fbb57431b4355b09d672e3
diff --git a/lib/rackstash/buffer.rb b/lib/rackstash/buffer.rb index <HASH>..<HASH> 100644 --- a/lib/rackstash/buffer.rb +++ b/lib/rackstash/buffer.rb @@ -80,8 +80,8 @@ module Rackstash clear end - # Extract useful data from an exception and add it to fields of the buffer - # for structured logging....
Do not mention local methods of Buffer class in methods docs referenced by Logger
meineerde_rackstash
train
rb
7ec55ed3ff71d8e6bdeaca058d592c5862621975
diff --git a/fabfile.py b/fabfile.py index <HASH>..<HASH> 100644 --- a/fabfile.py +++ b/fabfile.py @@ -714,7 +714,7 @@ def docker(subtask='info'): parsed_commands = [] replacements = {} - for key in ('user', 'host', 'port', 'branch'): + for key in ('user', 'host', 'port', 'branch', 'rootFolder'): replace...
allow rootFolder for docker-script-replacements via %guest.rootFolder%
factorial-io_fabalicious
train
py
8af3576360c51219fd4c8eb600d83bc9c09eb84d
diff --git a/go/vt/servenv/grpc_codec.go b/go/vt/servenv/grpc_codec.go index <HASH>..<HASH> 100644 --- a/go/vt/servenv/grpc_codec.go +++ b/go/vt/servenv/grpc_codec.go @@ -3,7 +3,10 @@ package servenv import ( "fmt" - "github.com/golang/protobuf/proto" + // use the original golang/protobuf package we can continue s...
grpc: disable linting
vitessio_vitess
train
go
a08ebd2fd315a07a06bae594fe627963519fd885
diff --git a/js/huobipro.js b/js/huobipro.js index <HASH>..<HASH> 100644 --- a/js/huobipro.js +++ b/js/huobipro.js @@ -456,12 +456,12 @@ module.exports = class huobipro extends Exchange { async fetchMyTrades (symbol = undefined, since = undefined, limit = undefined, params = {}) { await this.loadMarkets...
reverted previous fetchMyTrades change
ccxt_ccxt
train
js
e691d09a250b34181866da37e0a64bc516e0e51a
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -22,7 +22,7 @@ function decodeFGHIURL(encodedString){ // takes a string function FidonetURL(initialString){ // a fair number of helper functions is used in object's context (this)! - // _END_OF_HELPER_FUNCTIONS_ below ...
erased a non-ASCII character, made jshint (default mode) very happy
Mithgol_FGHI-URL
train
js
ea70a464319d3b9d9452ad790490bf32d7aa95c5
diff --git a/master/buildbot/test/__init__.py b/master/buildbot/test/__init__.py index <HASH>..<HASH> 100644 --- a/master/buildbot/test/__init__.py +++ b/master/buildbot/test/__init__.py @@ -114,6 +114,11 @@ warnings.filterwarnings('ignore', ".*the imp module is deprecated in favour of i # sqlalchemy-migrate uses depr...
test: Ignore deprecation warnings of API used by sqlalchemy-migrate
buildbot_buildbot
train
py
5b46d2722e3bf39f5a287e3e0e6db3ecbc9d4d7a
diff --git a/build/tasks/build-release/download.js b/build/tasks/build-release/download.js index <HASH>..<HASH> 100644 --- a/build/tasks/build-release/download.js +++ b/build/tasks/build-release/download.js @@ -1,7 +1,7 @@ /* jshint unused:vars, undef:true, node:true */ module.exports = function(grunt, config, para...
updating download.js for new build
concrete5_concrete5
train
js
f1b555aba932870a8a8920f0d12134c1528c0449
diff --git a/src/Toml.php b/src/Toml.php index <HASH>..<HASH> 100644 --- a/src/Toml.php +++ b/src/Toml.php @@ -42,7 +42,7 @@ class Toml try { $data = self::doParse($input, $resultAsObject); } catch (SyntaxErrorException $e) { - $exception = new ParseException($e->getMessage());...
Added the inner exception when a `ParseException` is thrown in method `parse` of class `Toml`
yosymfony_toml
train
php
8ab479dbc3f25ed6bf5ae3a3e675606b87a9757c
diff --git a/src/ol-ext/format/featurehash.js b/src/ol-ext/format/featurehash.js index <HASH>..<HASH> 100644 --- a/src/ol-ext/format/featurehash.js +++ b/src/ol-ext/format/featurehash.js @@ -194,7 +194,7 @@ ngeo.format.FeatureHash.CHAR64_ = * @const * @private */ -ngeo.format.FeatureHash.ACCURACY_ = 1; +ngeo.form...
FeatureHash - Use same accuracy as in cgxp
camptocamp_ngeo
train
js
bdaa43510b294bf49bbac1392d5518611c06eedc
diff --git a/cmd/disasm/main.go b/cmd/disasm/main.go index <HASH>..<HASH> 100644 --- a/cmd/disasm/main.go +++ b/cmd/disasm/main.go @@ -21,8 +21,9 @@ import ( "fmt" "io/ioutil" "os" + "encoding/hex" + "strings" - "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/vm" ) @@ -32,7 +...
cmd/disasm: fix off-by-one error and improve error handling (#<I>)
ethereum_go-ethereum
train
go
0d01a50dd64b69383faaf1e8d3df1e5e72813558
diff --git a/karaage/applications/forms.py b/karaage/applications/forms.py index <HASH>..<HASH> 100644 --- a/karaage/applications/forms.py +++ b/karaage/applications/forms.py @@ -61,12 +61,18 @@ class UserApplicantForm(ApplicantForm): return data + def clean_email(self): + email = self.cleane...
Make sure email isn't already in the system when signing up for accounts
Karaage-Cluster_karaage
train
py
52c01d2667adfd68210a0905b75c30ff4363f10e
diff --git a/tests/Doctrine/Tests/Inflector/Rules/English/EnglishFunctionalTest.php b/tests/Doctrine/Tests/Inflector/Rules/English/EnglishFunctionalTest.php index <HASH>..<HASH> 100644 --- a/tests/Doctrine/Tests/Inflector/Rules/English/EnglishFunctionalTest.php +++ b/tests/Doctrine/Tests/Inflector/Rules/English/English...
Add test cases for generic English -ware rule
doctrine_inflector
train
php
17a5fa6840b612c2f81634c1ddc5cbc063fe640a
diff --git a/.bach/src/build/build/Build.java b/.bach/src/build/build/Build.java index <HASH>..<HASH> 100644 --- a/.bach/src/build/build/Build.java +++ b/.bach/src/build/build/Build.java @@ -17,6 +17,7 @@ import java.nio.file.Files; import java.nio.file.Path; import java.util.List; +/** Silk's build program. */ cl...
Include in-module tests and modular integration tests
jbee_silk
train
java
5458e9c1de0bafced6d125d25c40ea89ba07dc61
diff --git a/src/Illuminate/Validation/Validator.php b/src/Illuminate/Validation/Validator.php index <HASH>..<HASH> 100755 --- a/src/Illuminate/Validation/Validator.php +++ b/src/Illuminate/Validation/Validator.php @@ -9,7 +9,7 @@ use Illuminate\Container\Container; use Symfony\Component\HttpFoundation\File\File; use...
Delete whitespace Delete whitespace
laravel_framework
train
php
8e0fde8343243a4761e29dad80b657ec84aaf288
diff --git a/test/MysqlPersistentConnectionTest.php b/test/MysqlPersistentConnectionTest.php index <HASH>..<HASH> 100644 --- a/test/MysqlPersistentConnectionTest.php +++ b/test/MysqlPersistentConnectionTest.php @@ -71,6 +71,7 @@ class MysqlPersistentConnectionTest extends TestCase case 'information...
Also exclude 'sys' as database (Travis) (#<I>) this makes Travis happy
hostnet_database-test-lib
train
php
3cf39b1030a8ea4b1c71e3f63d6a7fe1c852aa49
diff --git a/lib/gov_kit.rb b/lib/gov_kit.rb index <HASH>..<HASH> 100644 --- a/lib/gov_kit.rb +++ b/lib/gov_kit.rb @@ -10,7 +10,7 @@ require 'json' require 'gov_kit/configuration' require 'csv' -if VERSION[0,3] == "1.8" +if RUBY_VERSION[0,3] == "1.8" require 'fastercsv' end
Made version check compatible with Ruby <I>.
opengovernment_govkit
train
rb
29cdabf45a10a8ded11f98a505399b3033f7d3b1
diff --git a/src/Annotations/Handler/CollectionHandler.php b/src/Annotations/Handler/CollectionHandler.php index <HASH>..<HASH> 100644 --- a/src/Annotations/Handler/CollectionHandler.php +++ b/src/Annotations/Handler/CollectionHandler.php @@ -17,6 +17,11 @@ class CollectionHandler extends AbstractHandler implements Han...
Ensure missing properties are filled up with an empty array
php-api-clients_hydrator
train
php
d3d8d368c583724b214c2d497aa58df7181434a9
diff --git a/pandas/tests/test_groupby.py b/pandas/tests/test_groupby.py index <HASH>..<HASH> 100644 --- a/pandas/tests/test_groupby.py +++ b/pandas/tests/test_groupby.py @@ -1265,6 +1265,18 @@ class TestGroupBy(unittest.TestCase): for key, group in grouped: assert_frame_equal(result.ix[key], f(gr...
TST: unit test for groupby apply
pandas-dev_pandas
train
py
0bedc738473ccf04caf2d92cd0b702250f76e76d
diff --git a/lib/jsi/base.rb b/lib/jsi/base.rb index <HASH>..<HASH> 100644 --- a/lib/jsi/base.rb +++ b/lib/jsi/base.rb @@ -128,7 +128,7 @@ module JSI # # @return [JSI::Base, self] def deref - derefed = instance.deref + derefed = instance.respond_to?(:deref) ? instance.deref : instance if...
Base#deref returns self if instance has no deref
notEthan_jsi
train
rb
39de6327c2611966c491c2fcf4d9c7379cc411d1
diff --git a/tests/_support/Page/bill/Create.php b/tests/_support/Page/bill/Create.php index <HASH>..<HASH> 100644 --- a/tests/_support/Page/bill/Create.php +++ b/tests/_support/Page/bill/Create.php @@ -124,6 +124,11 @@ JS $this->tester->click('div.bill-charges>div:last-child button'); } + public fun...
Fixed PaymentCest:ensureICanUpdateBill, delete charge by name (#<I>)
hiqdev_hipanel-module-finance
train
php,php
021773833ba2d0dc74709ef33f0923536e364713
diff --git a/lib/sessionManager.js b/lib/sessionManager.js index <HASH>..<HASH> 100644 --- a/lib/sessionManager.js +++ b/lib/sessionManager.js @@ -265,6 +265,7 @@ Jingle.prototype.process = function (req) { this.peers[sender] = []; } this.peers[sender].push(session); + this.emit('c...
add createdSession event to allow hooking the traceablepeerconnection events early
otalk_jingle.js
train
js
b250ad03133833ee25640b5039d2c371fc825f06
diff --git a/test/function/matrix/cross.test.js b/test/function/matrix/cross.test.js index <HASH>..<HASH> 100644 --- a/test/function/matrix/cross.test.js +++ b/test/function/matrix/cross.test.js @@ -23,9 +23,9 @@ describe('cross', function() { }); it('should calculate cross product for n-d arrays and matrices',...
Change spec for output vector's shape for cross() Depending on the input vectors' dimensions, either a 1-d vector or a 2-d matrix should be returned.
josdejong_mathjs
train
js
419bf7a4c653165b2690b4cb538db4f079323ae1
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -122,7 +122,7 @@ setup( # # For an analysis of "install_requires" vs pip's requirements files see: # https://packaging.python.org/en/latest/requirements.html - install_requires=['click', 'sqlalchemy', 'piecas...
#<I> adding pricedb as a dependency
MisterY_asset-allocation
train
py
561dda3134a2719d8b45ea7d81aaa42a8ce50f1f
diff --git a/src/main/java/com/couchbase/cblite/replicator/CBLPusher.java b/src/main/java/com/couchbase/cblite/replicator/CBLPusher.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/couchbase/cblite/replicator/CBLPusher.java +++ b/src/main/java/com/couchbase/cblite/replicator/CBLPusher.java @@ -296,15 +296,15 @@...
Remove the workaround which allowed use of content-type. Make it strictly use content_type. It will print a warning if it sees content-type but just ignore it. (issue #<I>)
couchbase_couchbase-lite-java-core
train
java
465499958558c5335ab2fbbe868c564414cf0a70
diff --git a/lib/zendesk_apps_support/package.rb b/lib/zendesk_apps_support/package.rb index <HASH>..<HASH> 100644 --- a/lib/zendesk_apps_support/package.rb +++ b/lib/zendesk_apps_support/package.rb @@ -88,11 +88,11 @@ module ZendeskAppsSupport end def js_files - files.select { |f| f =~ /\.js$/ } + ...
use js_files instead of files and cache it
zendesk_zendesk_apps_support
train
rb
f00d8ac93bad39db116fe09009120ec9731cc1eb
diff --git a/tests/calculators/hazard/classical/post_processing_test.py b/tests/calculators/hazard/classical/post_processing_test.py index <HASH>..<HASH> 100644 --- a/tests/calculators/hazard/classical/post_processing_test.py +++ b/tests/calculators/hazard/classical/post_processing_test.py @@ -473,14 +473,6 @@ class Ha...
tests/calcs/hazard/classical/post_processing_test: Removed a useless test.
gem_oq-engine
train
py
793187a4f47539a566c0808994ff76b939fb3044
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -58,11 +58,12 @@ function loader(patterns, config) { function appLoader(app, config) { app.define('load', load('view', config)); - var emit = app.emit; + var fn = app.view; - app.define('emit', function(name, view) ...
wrap `app.view` instead of emit this ensures that view.contents will be loaded regardless of whether or not listeners are registered. we don't want to emit events when no listeners are registered.
assemble_assemble-loader
train
js
cf8c411bef19c1dce76a2d124683653b277f45f8
diff --git a/test/test_nested.py b/test/test_nested.py index <HASH>..<HASH> 100644 --- a/test/test_nested.py +++ b/test/test_nested.py @@ -366,6 +366,8 @@ sos_run('A', shared='executed') subprocess.call('sos remove -s', shell=True) for file in ('a.txt.a1', 'a.txt.a1.a2', 'b.txt.a1', 'b.txt.a1.a2'): ...
Fix tests for included nested workflow using interactive executor
vatlab_SoS
train
py
13ebf1b89cc51d6a9daa301ad07b4a5582174f4f
diff --git a/tests/test_text_utils.py b/tests/test_text_utils.py index <HASH>..<HASH> 100644 --- a/tests/test_text_utils.py +++ b/tests/test_text_utils.py @@ -62,9 +62,9 @@ def test_compare_str(left, right, score): @pytest.mark.parametrize('input,n,output', [ - ['Lille', 2, {'Li', 'il', 'll', 'le'}], - ['Lil...
ngrams are now padded with spaces
addok_addok
train
py
183456ad800beef105f904cb37ce0c37a9d7119f
diff --git a/pysc2/lib/remote_controller.py b/pysc2/lib/remote_controller.py index <HASH>..<HASH> 100644 --- a/pysc2/lib/remote_controller.py +++ b/pysc2/lib/remote_controller.py @@ -147,7 +147,7 @@ class RemoteController(object): """Create a new game. This can only be done by the host.""" return self._client...
RequestSaveMap is valid in init_game. This is needed to be first-player on the sc2ai.net ladder. PiperOrigin-RevId: <I>
deepmind_pysc2
train
py
b741774c88de221a9561b3218eb858361d201a2f
diff --git a/splunk_handler/__init__.py b/splunk_handler/__init__.py index <HASH>..<HASH> 100644 --- a/splunk_handler/__init__.py +++ b/splunk_handler/__init__.py @@ -310,7 +310,7 @@ class SplunkHandler(logging.Handler): # without looking at each item, estimate how many can fit in 50 MB apprx_...
Fix queued event ><I>MB causes hang
zach-taylor_splunk_handler
train
py
53ca73ab745c15c1e01bfef7340080d532fafabc
diff --git a/timeside/server/urls.py b/timeside/server/urls.py index <HASH>..<HASH> 100644 --- a/timeside/server/urls.py +++ b/timeside/server/urls.py @@ -26,6 +26,7 @@ api_router.register(r'items', views.ItemViewSet) api_router.register(r'providers', views.ProviderViewSet) api_router.register(r'selections', views.Se...
[server] put subprocessors back into the api fixing #<I> setting corresponding view to readOnly
Parisson_TimeSide
train
py,py
9e23e0baf30774c3fef7634055f8a35d37fb09aa
diff --git a/nutch/test_nutch.py b/nutch/test_nutch.py index <HASH>..<HASH> 100644 --- a/nutch/test_nutch.py +++ b/nutch/test_nutch.py @@ -189,5 +189,4 @@ def test_crawl_client(): assert len(rounds) == 1 assert cc.currentJob is None jobs = rounds[0] - assert len(jobs) == 4 assert all([j.info()['s...
Remove len(jobs) test. I'm not quite sure how to do this one correctly right now.
chrismattmann_nutch-python
train
py
36fc363bddf265b62b6c4324049aee12476786db
diff --git a/runtime/src/main/java/io/micronaut/reactive/rxjava2/converters/RxJavaConverterRegistrar.java b/runtime/src/main/java/io/micronaut/reactive/rxjava2/converters/RxJavaConverterRegistrar.java index <HASH>..<HASH> 100644 --- a/runtime/src/main/java/io/micronaut/reactive/rxjava2/converters/RxJavaConverterRegistr...
Changed Publisher to Maybe Conversion to use Flowable Changed the conversion of Publisher to Maybe to use Flowable to allow support of the source emitting 0 items
micronaut-projects_micronaut-core
train
java
a9cf07f65a1b206b7f776183d29923aa345f582e
diff --git a/lib/idlc-sdk-core/restclient.rb b/lib/idlc-sdk-core/restclient.rb index <HASH>..<HASH> 100644 --- a/lib/idlc-sdk-core/restclient.rb +++ b/lib/idlc-sdk-core/restclient.rb @@ -91,7 +91,7 @@ module Idlc ) result = JSON.parse(resp.body) - message = "status: #{resp.code}, messag...
fix result parsing in restclient
NathanTCz_idlc-sdk-core
train
rb,rb
67e785489f24adffc97551e3304bf65a92ddd362
diff --git a/kie-spring-boot/kie-spring-boot-samples/keycloak-kie-server-spring-boot-sample/src/test/java/org/kie/server/springboot/samples/KeycloakKieServerTest.java b/kie-spring-boot/kie-spring-boot-samples/keycloak-kie-server-spring-boot-sample/src/test/java/org/kie/server/springboot/samples/KeycloakKieServerTest.ja...
[JBPM-<I>] Upgrade testcontainers to <I> (#<I>)
kiegroup_droolsjbpm-integration
train
java
3b633cdb726f86a73fd63be2582ecd5d442b138f
diff --git a/tests/testmock.py b/tests/testmock.py index <HASH>..<HASH> 100644 --- a/tests/testmock.py +++ b/tests/testmock.py @@ -749,5 +749,10 @@ class MockTest(unittest2.TestCase): self.assertEqual(mock.mock_calls, expected) + def DONTtest_named_mock_calls(self): + mock = MagicMock(name='foo')...
Start extending a test for mock_calls
testing-cabal_mock
train
py
3b60e813a4167a4dd5bc05e92775ec7a3bf12195
diff --git a/src/Generator.php b/src/Generator.php index <HASH>..<HASH> 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -176,8 +176,8 @@ class Generator implements GeneratorInterface * Returns a MODE message. * * @param string $target - * @param string $mode - * @param string $param ...
Updated PHPDoc for ircMode() in Generator
phergie_phergie-irc-generator
train
php
f1da03a95e7f1463cd76e6f40bbcf8569ef2a70c
diff --git a/src/growlDirective.js b/src/growlDirective.js index <HASH>..<HASH> 100644 --- a/src/growlDirective.js +++ b/src/growlDirective.js @@ -9,7 +9,7 @@ angular.module("angular-growl").directive("growl", ["$rootScope", function ($roo ' <div ng-switch="message.enableHtml">' + ' <div ng-...
fixed jshint warnings
marcorinck_angular-growl
train
js
173bc9989ce8a921f50ec6bd731d3ab569dc7065
diff --git a/api/app/app_test.go b/api/app/app_test.go index <HASH>..<HASH> 100644 --- a/api/app/app_test.go +++ b/api/app/app_test.go @@ -40,6 +40,7 @@ func Test(t *testing.T) { TestingT(t) } type S struct { session *mgo.Session team auth.Team + user *auth.User } var _ = Suite(&S{}) @@ -48,7 +49,9 @@ func ...
api/app: creating user on setup
tsuru_tsuru
train
go
3d428f40c8dabab540d2c749776bdfc9ec8c5e4a
diff --git a/matplotlib2tikz/save.py b/matplotlib2tikz/save.py index <HASH>..<HASH> 100644 --- a/matplotlib2tikz/save.py +++ b/matplotlib2tikz/save.py @@ -245,7 +245,7 @@ def save(filepath, *args, encoding=None, **kwargs): For supported values: see ``codecs`` module. :returns: None """ -...
fix #<I> fix #<I> by passing filepath from `save` to `get_tikz_code`
nschloe_matplotlib2tikz
train
py
edd7298bac7f170a8a7dbc110b12147485f81e2f
diff --git a/examples/sampleserver.py b/examples/sampleserver.py index <HASH>..<HASH> 100644 --- a/examples/sampleserver.py +++ b/examples/sampleserver.py @@ -25,7 +25,7 @@ class ConcreteServer(OpenIDServer): # This is reimplemented in the subclass so that extra # debugging/tracing information can be ...
[project @ Fix bug in tracing code]
openid_python-openid
train
py
2a1c10a2e0fa93289a3571e62e6aa2ccaaab094a
diff --git a/push/model/src/main/java/org/jboss/aerogear/unifiedpush/message/UnifiedPushMessage.java b/push/model/src/main/java/org/jboss/aerogear/unifiedpush/message/UnifiedPushMessage.java index <HASH>..<HASH> 100644 --- a/push/model/src/main/java/org/jboss/aerogear/unifiedpush/message/UnifiedPushMessage.java +++ b/p...
update message format in java docs to include safari options
aerogear_aerogear-unifiedpush-server
train
java
02e4e1d37499fe895f8ab69be687802c49aec10c
diff --git a/src/python/pants/pantsd/pants_daemon_core.py b/src/python/pants/pantsd/pants_daemon_core.py index <HASH>..<HASH> 100644 --- a/src/python/pants/pantsd/pants_daemon_core.py +++ b/src/python/pants/pantsd/pants_daemon_core.py @@ -138,7 +138,10 @@ class PantsDaemonCore: dynamic_remote_options, auth_plu...
Fix scheduler initialization log (#<I>) Before, we never would show "Initializing scheduler" and we'd always say "Reinitializing scheduler". [ci skip-rust] [ci skip-build-wheels]
pantsbuild_pants
train
py
3164ae4eb5042b858458f4d252401ab12854c440
diff --git a/test/replace_test.js b/test/replace_test.js index <HASH>..<HASH> 100644 --- a/test/replace_test.js +++ b/test/replace_test.js @@ -25,11 +25,11 @@ exports['replace'] = { expect = '@@value\n'; result = grunt.file.read('tmp/preserve_prefix.txt'); - test.equal(expect, result, 'should replace sim...
Earlier commit of version <I>.
outaTiME_grunt-replace
train
js
58d8a092363e3a219b3fe15a61a57226d84c0eb9
diff --git a/packages/docs/themes/cerebral-website/page/__edit/page__edit.bemhtml.js b/packages/docs/themes/cerebral-website/page/__edit/page__edit.bemhtml.js index <HASH>..<HASH> 100644 --- a/packages/docs/themes/cerebral-website/page/__edit/page__edit.bemhtml.js +++ b/packages/docs/themes/cerebral-website/page/__edit...
fix(docs): edit on github link fix (#<I>)
cerebral_cerebral
train
js
709459e732d9ceb9ea891ce609bf262786d8725c
diff --git a/lib/mortar/config.rb b/lib/mortar/config.rb index <HASH>..<HASH> 100644 --- a/lib/mortar/config.rb +++ b/lib/mortar/config.rb @@ -49,7 +49,7 @@ module Mortar def labels(other = {}) hash = @labels.dup hash.merge!(other) - RecursiveOpenStruct.new(hash) + RecursiveOpenStruct.new(h...
Fix crash when using shots with labels (#<I>)
kontena_mortar
train
rb,rb
14ebc396459f77a385af9a5cc41be1b62953058e
diff --git a/mod/forum/externallib.php b/mod/forum/externallib.php index <HASH>..<HASH> 100644 --- a/mod/forum/externallib.php +++ b/mod/forum/externallib.php @@ -478,15 +478,15 @@ class mod_forum_external extends external_api { $post->children = array(); } - $userpicture = ne...
MDL-<I> forum: fix user profile picture in external service
moodle_moodle
train
php
d07761267ccab5c36f1fd1b83704c6f00db55287
diff --git a/components/user-agreement/smart-user-agreement.js b/components/user-agreement/smart-user-agreement.js index <HASH>..<HASH> 100644 --- a/components/user-agreement/smart-user-agreement.js +++ b/components/user-agreement/smart-user-agreement.js @@ -13,7 +13,6 @@ export default class SmartUserAgreement extends...
smart-user-agreement: getting rid of auth
JetBrains_ring-ui
train
js
207637080ac4b8e41b0361fc0feef33f60ddf802
diff --git a/aws_xray_sdk/ext/botocore/patch.py b/aws_xray_sdk/ext/botocore/patch.py index <HASH>..<HASH> 100644 --- a/aws_xray_sdk/ext/botocore/patch.py +++ b/aws_xray_sdk/ext/botocore/patch.py @@ -31,7 +31,9 @@ def _xray_traced_botocore(wrapped, instance, args, kwargs): service = instance._service_model.metadata...
add puttracesegments to boto whitelist avoid a catch <I>
aws_aws-xray-sdk-python
train
py