title stringlengths 2 169 | diff stringlengths 235 19.5k | body stringlengths 0 30.5k | url stringlengths 48 84 | created_at stringlengths 20 20 | closed_at stringlengths 20 20 | merged_at stringlengths 20 20 | updated_at stringlengths 20 20 | diff_len float64 101 3.99k | repo_name stringclasses 83
values | __index_level_0__ int64 15 52.7k |
|---|---|---|---|---|---|---|---|---|---|---|
Don't attempt to coerce JS strings to numbers | diff --git a/test/test_utils.py b/test/test_utils.py
index 962fd8d753f..c2d1e4fb17a 100644
--- a/test/test_utils.py
+++ b/test/test_utils.py
@@ -994,6 +994,12 @@ def test_js_to_json_edgecases(self):
on = js_to_json('{42:4.2e1}')
self.assertEqual(json.loads(on), {'42': 42.0})
+ on = js_to_json... | ### Before submitting a *pull request* make sure you have:
- [x] At least skimmed through [adding new extractor tutorial](https://github.com/ytdl-org/youtube-dl#adding-support-for-a-new-site) and [youtube-dl coding conventions](https://github.com/ytdl-org/youtube-dl#youtube-dl-coding-conventions) sections
- [x] [Sear... | https://api.github.com/repos/ytdl-org/youtube-dl/pulls/26851 | 2020-10-09T23:09:34Z | 2020-10-17T17:10:42Z | 2020-10-17T17:10:42Z | 2020-12-02T16:37:31Z | 450 | ytdl-org/youtube-dl | 50,667 |
Fix Dockerfile.gpu to include required python3.8-tk | diff --git a/Dockerfile.gpu b/Dockerfile.gpu
index f940119f79..b18c58d447 100755
--- a/Dockerfile.gpu
+++ b/Dockerfile.gpu
@@ -7,6 +7,7 @@ RUN add-apt-repository ppa:deadsnakes/ppa -y
RUN apt-get update
RUN apt install python3.8 -y
RUN apt install python3.8-distutils -y
+RUN apt install python3.8-tk -y
RUN apt ins... | Also fixed incorrect instructions in INSTALL.md documentation for docker | https://api.github.com/repos/deepfakes/faceswap/pulls/1118 | 2021-01-13T21:59:07Z | 2021-01-23T15:55:07Z | 2021-01-23T15:55:07Z | 2021-01-23T15:55:07Z | 445 | deepfakes/faceswap | 18,853 |
Fix typo in changelog. | diff --git a/CHANGELOG.md b/CHANGELOG.md
index 30cb4d4de12..fb32ba8fd1e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -30,7 +30,7 @@ More details about these changes can be found on our GitHub repo.
* Fedora 29+ is now supported by certbot-auto. Since Python 2.x is on a deprecation
path in Fedora, certbot-auto ... | Fixes a typo in the changelog pointed out at https://community.letsencrypt.org/t/certbot-0-33-0-release/90298/4 so it's correct going forward. | https://api.github.com/repos/certbot/certbot/pulls/6910 | 2019-04-03T21:47:39Z | 2019-04-03T22:16:44Z | 2019-04-03T22:16:44Z | 2019-04-03T22:17:36Z | 206 | certbot/certbot | 2,759 |
CI: make travis run the doctests | diff --git a/continuous_integration/test_script.sh b/continuous_integration/test_script.sh
index f25f45e4b222e..faf106d63f629 100644
--- a/continuous_integration/test_script.sh
+++ b/continuous_integration/test_script.sh
@@ -12,8 +12,8 @@ python -c "import scipy; print('scipy %s' % scipy.__version__)"
python setup.py ... | Reuse the Makefile to avoid duplication of the list of documentation folders to test. Unfortunately there is no simple way to make nose recursively introspect non-package folders.
| https://api.github.com/repos/scikit-learn/scikit-learn/pulls/3189 | 2014-05-23T09:18:12Z | 2014-05-23T09:35:11Z | 2014-05-23T09:35:10Z | 2014-06-13T12:28:32Z | 164 | scikit-learn/scikit-learn | 46,413 |
Remove unneeded mypy dependencies | diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index c2f4b1684e..3561df4f90 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -43,10 +43,8 @@ repos:
- id: mypy
exclude: ^docs/conf.py
additional_dependencies:
- - types-dataclasses >= 0.1.3
... | Black no longer uses typed-ast or the dataclasses backport, so these should both be unnecessary now! | https://api.github.com/repos/psf/black/pulls/3783 | 2023-07-11T09:11:40Z | 2023-07-11T14:21:37Z | 2023-07-11T14:21:37Z | 2023-07-11T14:21:41Z | 182 | psf/black | 24,461 |
[NFC] polish code style | diff --git a/colossalai/fx/passes/passes_for_gpt2_test.py b/colossalai/fx/passes/passes_for_gpt2_test.py
index f98fcd686ea4..abc1a089e9a9 100644
--- a/colossalai/fx/passes/passes_for_gpt2_test.py
+++ b/colossalai/fx/passes/passes_for_gpt2_test.py
@@ -1,14 +1,15 @@
+import inspect
+from typing import Any, Callable, Dict... | ## 📌 Checklist before creating the PR
- [ ] I have created an issue for this PR for traceability
- [ ] The title follows the standard format: `[doc/gemini/tensor/...]: A concise description`
- [ ] I have added relevant tags if possible for us to better distinguish different PRs
## 🚨 Issue number
> Link t... | https://api.github.com/repos/hpcaitech/ColossalAI/pulls/3273 | 2023-03-28T02:42:46Z | 2023-03-28T02:43:28Z | 2023-03-28T02:43:28Z | 2023-03-28T04:29:25Z | 301 | hpcaitech/ColossalAI | 11,358 |
List more private and link-local IP networks | diff --git a/homeassistant/util/network.py b/homeassistant/util/network.py
index 87077a0eb0a2..7d0d6e99639c 100644
--- a/homeassistant/util/network.py
+++ b/homeassistant/util/network.py
@@ -14,14 +14,21 @@
# RFC6890 - Address allocation for Private Internets
PRIVATE_NETWORKS = (
- ip_network("fd00::/8"),
i... | <!--
You are amazing! Thanks for contributing to our project!
Please, DO NOT DELETE ANY TEXT from this template! (unless instructed).
-->
## Proposed change
<!--
Describe the big picture of your changes here to communicate to the
maintainers why we should accept this pull request. If it fixes a bug
... | https://api.github.com/repos/home-assistant/core/pulls/74064 | 2022-06-27T18:08:50Z | 2022-06-28T05:00:44Z | 2022-06-28T05:00:44Z | 2022-06-29T07:01:52Z | 921 | home-assistant/core | 39,261 |
Modify some expressions in quickstart_en.md | diff --git a/doc/doc_en/quickstart_en.md b/doc/doc_en/quickstart_en.md
index a5c0881de3..b897f3a3f4 100644
--- a/doc/doc_en/quickstart_en.md
+++ b/doc/doc_en/quickstart_en.md
@@ -1,15 +1,15 @@
-# Quick start of Chinese OCR model
+# Quick Start of Chinese OCR Model
-## 1. Prepare for the environment
+## 1. Environme... | Modify some expressions in quickstart_en.md | https://api.github.com/repos/PaddlePaddle/PaddleOCR/pulls/2784 | 2021-05-13T06:20:07Z | 2021-05-13T11:19:16Z | 2021-05-13T11:19:16Z | 2021-05-13T11:19:16Z | 845 | PaddlePaddle/PaddleOCR | 42,510 |
AppTest `from_function` args | diff --git a/lib/streamlit/runtime/scriptrunner/script_runner.py b/lib/streamlit/runtime/scriptrunner/script_runner.py
index 203749e05fc1..c36bbd6d6548 100644
--- a/lib/streamlit/runtime/scriptrunner/script_runner.py
+++ b/lib/streamlit/runtime/scriptrunner/script_runner.py
@@ -510,7 +510,7 @@ def _run_script(self, rer... |
## Describe your changes
Allows `AppTest.from_function` to work with a function that takes arguments, and pass arguments to it.
The new implementation also allows it to work for functions that return values or otherwise do things that are not valid as top level expressions.
## GitHub Issue Link (if applicable... | https://api.github.com/repos/streamlit/streamlit/pulls/8183 | 2024-02-20T20:41:52Z | 2024-02-21T19:28:47Z | 2024-02-21T19:28:47Z | 2024-02-21T19:59:57Z | 1,950 | streamlit/streamlit | 21,709 |
bitbank safeOrder2 | diff --git a/js/bitbank.js b/js/bitbank.js
index 7439e80d7ab8..17a348efcdc0 100644
--- a/js/bitbank.js
+++ b/js/bitbank.js
@@ -431,15 +431,15 @@ module.exports = class bitbank extends Exchange {
symbol = market['symbol'];
}
const timestamp = this.safeInteger (order, 'ordered_at');
- ... | https://api.github.com/repos/ccxt/ccxt/pulls/10347 | 2021-10-27T09:40:19Z | 2021-10-28T10:12:05Z | 2021-10-28T10:12:05Z | 2021-10-28T10:12:05Z | 327 | ccxt/ccxt | 12,990 | |
ref(createProject): convert test from jsx to tsx | diff --git a/static/app/views/projectInstall/createProject.spec.jsx b/static/app/views/projectInstall/createProject.spec.tsx
similarity index 85%
rename from static/app/views/projectInstall/createProject.spec.jsx
rename to static/app/views/projectInstall/createProject.spec.tsx
index 09c46722ec3da0..aae6c9328e578b 10064... | just convert the test from `.jsx` to `.tsx` | https://api.github.com/repos/getsentry/sentry/pulls/49304 | 2023-05-17T07:39:37Z | 2023-05-23T07:49:49Z | 2023-05-23T07:49:49Z | 2023-06-07T12:00:55Z | 1,064 | getsentry/sentry | 44,177 |
[Eval] Add navigation bar | diff --git a/fastchat/eval/webpage/index.html b/fastchat/eval/webpage/index.html
index 1e07d73135..c2e3cf020b 100644
--- a/fastchat/eval/webpage/index.html
+++ b/fastchat/eval/webpage/index.html
@@ -10,6 +10,26 @@
</head>
<body>
+ <nav class="navbar navbar-expand-lg navbar-dark bg-dark">
+ <a class="navba... | https://api.github.com/repos/lm-sys/FastChat/pulls/76 | 2023-03-30T09:31:03Z | 2023-03-30T09:32:45Z | 2023-03-30T09:32:45Z | 2023-03-30T09:32:48Z | 529 | lm-sys/FastChat | 41,087 | |
Update README.md | diff --git a/README.md b/README.md
index 7f6d9ec..b5ee9d7 100644
--- a/README.md
+++ b/README.md
@@ -619,7 +619,7 @@ True
* When `id` was called, Python created a `WTF` class object and passed it to the `id` function. The `id` function takes its `id` (its memory location), and throws away the object. The object is des... | Grammatical fix | https://api.github.com/repos/satwikkansal/wtfpython/pulls/290 | 2022-05-31T14:36:45Z | 2022-06-01T03:37:07Z | 2022-06-01T03:37:07Z | 2022-06-01T03:37:07Z | 262 | satwikkansal/wtfpython | 25,774 |
[3.8] bpo-37695: Correct unget_wch error message. (GH-14986) | diff --git a/Misc/NEWS.d/next/Library/2019-07-27-20-21-03.bpo-37695.QANdvg.rst b/Misc/NEWS.d/next/Library/2019-07-27-20-21-03.bpo-37695.QANdvg.rst
new file mode 100644
index 00000000000000..ca6c11641ed6a9
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-07-27-20-21-03.bpo-37695.QANdvg.rst
@@ -0,0 +1 @@
+Correct :func:... | (cherry picked from commit c9345e382c630ddcc2b148b30954640e0e435c8a)
Co-authored-by: Anthony Sottile <asottile@umich.edu>
<!-- issue-number: [bpo-37695](https://bugs.python.org/issue37695) -->
https://bugs.python.org/issue37695
<!-- /issue-number -->
| https://api.github.com/repos/python/cpython/pulls/15061 | 2019-07-31T20:24:42Z | 2019-07-31T20:45:00Z | 2019-07-31T20:45:00Z | 2019-07-31T21:03:08Z | 431 | python/cpython | 4,253 |
Issue 1629 has been closed, let's celebrate! | diff --git a/CHANGES.md b/CHANGES.md
index 0ca0b84f6d..65d037394a 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -6,7 +6,8 @@
- Fixed a rare but annoying formatting instability created by the combination of
optional trailing commas inserted by `Black` and optional parentheses looking at
- pre-existing "magic" trail... | https://api.github.com/repos/psf/black/pulls/2127 | 2021-04-25T20:52:47Z | 2021-04-25T21:52:23Z | 2021-04-25T21:52:23Z | 2021-04-25T21:55:37Z | 168 | psf/black | 24,129 | |
Refactoring: Delete whitespace spam on the end of the file | diff --git a/old_projects/fractal_charm.py b/old_projects/fractal_charm.py
index 7a86250815..964a049e81 100644
--- a/old_projects/fractal_charm.py
+++ b/old_projects/fractal_charm.py
@@ -108,45 +108,4 @@ class CircularFractalCreation(FractalCreation):
"max_order" : 5,
"fractal_kwargs" : {"height" : 6}... | https://api.github.com/repos/3b1b/manim/pulls/338 | 2018-11-05T12:44:27Z | 2018-11-05T18:08:55Z | 2018-11-05T18:08:55Z | 2018-11-05T18:08:55Z | 151 | 3b1b/manim | 18,279 | |
Tweak typos and configs | diff --git a/.travis.yml b/.travis.yml
index 22e60e374f107..5bc279c31ca43 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -25,8 +25,8 @@ after_script:
- bash <(curl -s https://codecov.io/bash)
deploy:
- provider: script
- script: bash scripts/deploy.sh
- on:
- tags: true
- python: "3.6"
+ provider: sc... | Tweak typos and configs, inherited from the process of building [Typer](https://github.com/tiangolo/typer). | https://api.github.com/repos/tiangolo/fastapi/pulls/837 | 2020-01-08T18:33:15Z | 2020-01-08T22:25:30Z | 2020-01-08T22:25:30Z | 2020-01-08T22:25:33Z | 1,900 | tiangolo/fastapi | 22,812 |
[Epidemic Sound] Add new extractor | diff --git a/youtube_dl/extractor/epidemicsound.py b/youtube_dl/extractor/epidemicsound.py
new file mode 100644
index 00000000000..1a52738aa6e
--- /dev/null
+++ b/youtube_dl/extractor/epidemicsound.py
@@ -0,0 +1,101 @@
+# coding: utf-8
+from __future__ import unicode_literals
+
+from .common import InfoExtractor
+from ... | ## Please follow the guide below
- You will be asked some questions, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *pull request* (like that [x])
- Use *Preview* tab to see how your *pull request* will actually look like
---
### Before submitting a *p... | https://api.github.com/repos/ytdl-org/youtube-dl/pulls/32628 | 2023-11-06T11:05:16Z | 2023-12-06T01:17:57Z | 2023-12-06T01:17:57Z | 2023-12-06T01:18:25Z | 1,326 | ytdl-org/youtube-dl | 49,839 |
Fix the `dirty_unzip` rule | diff --git a/thefuck/rules/dirty_untar.py b/thefuck/rules/dirty_untar.py
index efbf1e328..25d02a640 100644
--- a/thefuck/rules/dirty_untar.py
+++ b/thefuck/rules/dirty_untar.py
@@ -19,7 +19,6 @@ def _is_tar_extract(cmd):
def _tar_file(cmd):
-
for c in cmd:
for ext in tar_extensions:
if c... | https://api.github.com/repos/nvbn/thefuck/pulls/419 | 2015-12-29T17:47:29Z | 2015-12-29T21:58:30Z | 2015-12-29T21:58:30Z | 2016-01-04T11:44:46Z | 384 | nvbn/thefuck | 30,767 | |
core[patch]: add alternative_import to deprecated | diff --git a/libs/core/langchain_core/_api/deprecation.py b/libs/core/langchain_core/_api/deprecation.py
index eee686a1811cf1..b9a0c39e485fe5 100644
--- a/libs/core/langchain_core/_api/deprecation.py
+++ b/libs/core/langchain_core/_api/deprecation.py
@@ -39,6 +39,7 @@ def deprecated(
message: str = "",
name: ... | https://api.github.com/repos/langchain-ai/langchain/pulls/15781 | 2024-01-09T21:54:39Z | 2024-01-09T22:45:29Z | 2024-01-09T22:45:29Z | 2024-01-09T22:55:16Z | 1,089 | langchain-ai/langchain | 43,483 | |
[Instagram] Add new [:tag] extractor, refactor [:user] | diff --git a/youtube_dl/extractor/extractors.py b/youtube_dl/extractor/extractors.py
index 3b1dfc451f2..485909328f8 100644
--- a/youtube_dl/extractor/extractors.py
+++ b/youtube_dl/extractor/extractors.py
@@ -489,7 +489,11 @@
from .inc import IncIE
from .indavideo import IndavideoEmbedIE
from .infoq import InfoQIE
-... | ### Before submitting a *pull request* make sure you have:
- [x] At least skimmed through [adding new extractor tutorial](https://github.com/rg3/youtube-dl#adding-support-for-a-new-site) and [youtube-dl coding conventions](https://github.com/rg3/youtube-dl#youtube-dl-coding-conventions) sections
- [x] [Searched](http... | https://api.github.com/repos/ytdl-org/youtube-dl/pulls/18757 | 2019-01-06T00:35:39Z | 2019-01-20T09:10:47Z | 2019-01-20T09:10:47Z | 2019-01-20T22:42:28Z | 1,975 | ytdl-org/youtube-dl | 50,231 |
2.7.3 prep | diff --git a/acme/setup.py b/acme/setup.py
index 2b51aaf1636..fc149889c94 100644
--- a/acme/setup.py
+++ b/acme/setup.py
@@ -3,7 +3,7 @@
from setuptools import find_packages
from setuptools import setup
-version = '2.7.1'
+version = '2.7.2'
install_requires = [
'cryptography>=3.2.1',
diff --git a/certbot-ap... | This PR should not be squashed to preserve the signed and tagged release commit.
This PR is the changes from https://github.com/certbot/certbot/pull/9815 plus the cherry picking for the 2.7.3 release. | https://api.github.com/repos/certbot/certbot/pulls/9817 | 2023-10-24T19:35:13Z | 2023-10-24T19:49:05Z | 2023-10-24T19:49:05Z | 2023-10-24T19:49:05Z | 3,841 | certbot/certbot | 2,522 |
Note about running on web server, not PC | diff --git a/README.rst b/README.rst
index 0dbe1cdefeb..d75b44a65bd 100644
--- a/README.rst
+++ b/README.rst
@@ -6,7 +6,7 @@ Anyone who has gone through the trouble of setting up a secure website knows wha
How you use Certbot depends on the configuration of your web server. The best way to get started is to use our ... | Documentation change only: two reminders about where Certbot is meant to be used, to avoid any confusion caused by people installing locally on laptops.
Fixes #2224. | https://api.github.com/repos/certbot/certbot/pulls/6422 | 2018-10-16T12:09:57Z | 2018-10-17T21:09:00Z | 2018-10-17T21:09:00Z | 2018-10-17T21:09:05Z | 488 | certbot/certbot | 482 |
Added Manhattan distance algorithm | diff --git a/maths/manhattan_distance.py b/maths/manhattan_distance.py
new file mode 100644
index 000000000000..2711d4c8ccd6
--- /dev/null
+++ b/maths/manhattan_distance.py
@@ -0,0 +1,126 @@
+def manhattan_distance(point_a: list, point_b: list) -> float:
+ """
+ Expectts two list of numbers representing two point... | ### Describe your change:
Added an algorithm to calculate Manhattan distance,
Added the algorithm twice, one in a mor traditional way and other using a one-liner.
Fixes: #7776
* [x] Add an algorithm?
* [ ] Fix a bug or typo in an existing algorithm?
* [ ] Documentation change?
### Checklist:
* [X] I h... | https://api.github.com/repos/TheAlgorithms/Python/pulls/7790 | 2022-10-28T16:38:29Z | 2022-10-30T09:00:48Z | 2022-10-30T09:00:48Z | 2022-10-30T14:10:35Z | 1,287 | TheAlgorithms/Python | 30,356 |
ref: Remove references to deprecated settings | diff --git a/src/sentry/sentry_metrics/configuration.py b/src/sentry/sentry_metrics/configuration.py
index a885712f379d6..cf09dcc501532 100644
--- a/src/sentry/sentry_metrics/configuration.py
+++ b/src/sentry/sentry_metrics/configuration.py
@@ -47,7 +47,6 @@ class IndexerStorage(Enum):
class MetricsIngestConfiguration... | settings.KAFKA_INGEST_PERFORMANCE_METRICS and settings.KAFKA_INGEST_METRICS are deprecated.
The IngestConfiguration.input_topic was never used anywhere. | https://api.github.com/repos/getsentry/sentry/pulls/66532 | 2024-03-07T18:59:36Z | 2024-03-07T22:48:14Z | 2024-03-07T22:48:14Z | 2024-03-23T00:22:42Z | 479 | getsentry/sentry | 44,043 |
Fix bugs that Mixup does not work when device is cpu | diff --git a/timm/data/mixup.py b/timm/data/mixup.py
index 38477548a0..7e382c5233 100644
--- a/timm/data/mixup.py
+++ b/timm/data/mixup.py
@@ -214,7 +214,7 @@ def __call__(self, x, target):
lam = self._mix_pair(x)
else:
lam = self._mix_batch(x)
- target = mixup_target(target, s... | `timm.data.Mixup` class does not work when device is cpu.
```python
from timm.data.mixup import Mixup
mixup_args = {
'mixup_alpha': 1.,
'cutmix_alpha': 0.,
'cutmix_minmax': None,
'prob': 1.0,
'switch_prob': 0.,
'mode': 'batch',
'label_smoothing': 0,
'num_classes': 4
}
... | https://api.github.com/repos/huggingface/pytorch-image-models/pulls/913 | 2021-10-12T15:00:16Z | 2021-10-12T21:09:56Z | 2021-10-12T21:09:56Z | 2021-10-12T21:09:56Z | 150 | huggingface/pytorch-image-models | 16,352 |
Support `st.exception` in testing framework | diff --git a/lib/streamlit/testing/element_tree.py b/lib/streamlit/testing/element_tree.py
index 404a45d67fb9..3dcd0c9d077b 100644
--- a/lib/streamlit/testing/element_tree.py
+++ b/lib/streamlit/testing/element_tree.py
@@ -26,6 +26,7 @@
from streamlit.proto.Button_pb2 import Button as ButtonProto
from streamlit.proto... |
## 📚 Context
- What kind of change does this PR introduce?
- [ ] Bugfix
- [x] Feature
- [ ] Refactoring
- [ ] Other, please describe:
## 🧠 Description of Changes
- [ ] This is a breaking API change
- [x] This is a visible (user-facing) change
## 🧪 Testing Done
- [ ] Screenshots incl... | https://api.github.com/repos/streamlit/streamlit/pulls/6283 | 2023-03-09T18:37:37Z | 2023-03-10T00:07:49Z | 2023-03-10T00:07:49Z | 2023-03-10T00:07:53Z | 884 | streamlit/streamlit | 21,748 |
Fix Inconsistent definition of czstring in comments | diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md
index 817246489..8b7017b9e 100644
--- a/CppCoreGuidelines.md
+++ b/CppCoreGuidelines.md
@@ -18755,7 +18755,7 @@ Distinguishing these alternatives prevents misunderstandings and bugs.
All we know is that it is supposed to be the nullptr or point to at least one c... | Comments in sections SL.str.3 and GSL.view disagree on whether czstring may be the nullptr.
This PR fixes the first comment definition in SL.str.3 that czstring `is a C-style string that is not the nullptr`
### SL.str.3: Use zstring or czstring to refer to a C-style, zero-terminated, sequence of characters
```
... | https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/976 | 2017-07-03T16:20:53Z | 2017-07-24T18:25:19Z | 2017-07-24T18:25:19Z | 2017-07-24T18:25:19Z | 192 | isocpp/CppCoreGuidelines | 15,392 |
Fix typos | diff --git a/rich/cells.py b/rich/cells.py
index 139b949f7..9354f9e31 100644
--- a/rich/cells.py
+++ b/rich/cells.py
@@ -60,7 +60,7 @@ def _get_codepoint_cell_size(codepoint: int) -> int:
"""Get the cell size of a character.
Args:
- character (str): A single character.
+ codepoint (int): Codep... | ## Type of changes
- [ ] Bug fix
- [ ] New feature
- [ ] Documentation / docstrings
- [ ] Tests
- [x] Other
## Checklist
- [x] I've run the latest [black](https://github.com/psf/black) with default args on new code.
- [ ] I've updated CHANGELOG.md and CONTRIBUTORS.md where appropriate.
- [ ] I've added t... | https://api.github.com/repos/Textualize/rich/pulls/2631 | 2022-11-06T13:05:29Z | 2023-03-04T09:19:12Z | 2023-03-04T09:19:12Z | 2023-03-04T09:19:12Z | 303 | Textualize/rich | 48,403 |
ZeRO-1 empty grads fix + tests | diff --git a/deepspeed/runtime/zero/stage2.py b/deepspeed/runtime/zero/stage2.py
index faa6443bfef4..a3e09d50b50d 100755
--- a/deepspeed/runtime/zero/stage2.py
+++ b/deepspeed/runtime/zero/stage2.py
@@ -473,7 +473,7 @@ def initialize_optimizer_states(self):
if not self.cpu_offload:
for group in ... | * Only reduce non-empty grads for stage 1
* Add unit test and ensure empty grads are triggered for all ranks
* Only empty grads if stage 2
* Add context comments to empty grads calls | https://api.github.com/repos/microsoft/DeepSpeed/pulls/1273 | 2021-08-02T17:29:43Z | 2021-08-02T18:00:26Z | 2021-08-02T18:00:26Z | 2021-08-02T18:00:29Z | 1,659 | microsoft/DeepSpeed | 10,587 |
Update binary_exponentiation.py | diff --git a/maths/binary_exponentiation.py b/maths/binary_exponentiation.py
index 05de939d1bde..7eeca89262a9 100644
--- a/maths/binary_exponentiation.py
+++ b/maths/binary_exponentiation.py
@@ -5,6 +5,12 @@
def binary_exponentiation(a: int, n: int) -> int:
+ """
+ >>> binary_exponentiation(3, 5)
+ 243
+ ... | ### Describe your change:
Added doctests.
* [ ] Add an algorithm?
* [ ] Fix a bug or typo in an existing algorithm?
* [X] Documentation change?
### Checklist:
* [X] I have read [CONTRIBUTING.md](https://github.com/TheAlgorithms/Python/blob/master/CONTRIBUTING.md).
* [X] This pull request is all my own work... | https://api.github.com/repos/TheAlgorithms/Python/pulls/10253 | 2023-10-10T23:16:56Z | 2023-10-19T12:15:23Z | 2023-10-19T12:15:23Z | 2023-10-19T12:15:23Z | 225 | TheAlgorithms/Python | 29,945 |
Fixed #33633 -- Skipped some test_utils tests on databases that don't support transactions. | diff --git a/tests/test_utils/test_testcase.py b/tests/test_utils/test_testcase.py
index ca142186a1950..eb6ca80036936 100644
--- a/tests/test_utils/test_testcase.py
+++ b/tests/test_utils/test_testcase.py
@@ -41,6 +41,7 @@ def test_disallowed_database_queries(self):
with self.assertRaisesMessage(DatabaseOperat... | The testing framework has some different behaviors for backends not supporting transactions. Mostly in `TestCase._fixture_setup` and `TestCase.setUpClass`. Skip them. | https://api.github.com/repos/django/django/pulls/15582 | 2022-04-12T08:57:25Z | 2022-04-12T13:35:51Z | 2022-04-12T13:35:51Z | 2022-04-12T14:11:51Z | 417 | django/django | 51,351 |
Remove extra backtick in ES.23 | diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md
index 005cb5103..58cab9303 100644
--- a/CppCoreGuidelines.md
+++ b/CppCoreGuidelines.md
@@ -10717,7 +10717,7 @@ Use `={...}` if you really want an `initializer_list<T>`
`={}` gives copy initialization whereas `{}` gives direct initialization.
Like the distinc... | It's a minor typo, see title.
Thank you! | https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/1453 | 2019-06-23T14:51:21Z | 2019-06-25T17:30:38Z | 2019-06-25T17:30:38Z | 2019-06-25T17:30:38Z | 161 | isocpp/CppCoreGuidelines | 15,288 |
gh-110014: Remove PY_TIMEOUT_MAX from limited C API | diff --git a/Doc/data/stable_abi.dat b/Doc/data/stable_abi.dat
index 07c6d514d19549..c189c78238f40f 100644
--- a/Doc/data/stable_abi.dat
+++ b/Doc/data/stable_abi.dat
@@ -1,5 +1,4 @@
role,name,added,ifdef_note,struct_abi_kind
-var,PY_TIMEOUT_MAX,3.2,,
macro,PY_VECTORCALL_ARGUMENTS_OFFSET,3.12,,
function,PyAIter_Chec... | If the timeout is greater than PY_TIMEOUT_MAX,
PyThread_acquire_lock_timed() uses a timeout of PY_TIMEOUT_MAX microseconds, which is around 280.6 years. This case is unlikely and limiting a timeout to 280.6 years sounds like a reasonable trade-off.
The constant PY_TIMEOUT_MAX is not used in PyPI top 5,000 projects.... | https://api.github.com/repos/python/cpython/pulls/110217 | 2023-10-02T11:45:18Z | 2023-10-02T16:07:56Z | 2023-10-02T16:07:56Z | 2023-10-02T18:08:41Z | 1,599 | python/cpython | 3,865 |
Use live badge for source repos' users/stars | diff --git a/README.md b/README.md
index 246c8915..61f37309 100644
--- a/README.md
+++ b/README.md
@@ -822,13 +822,13 @@ all over the world
|Cheat sheets |Repository | Users | Creation Date |
|-----------------------|----------------------------------------------... | Also updates Stackoverflow user count from 9m to 14m.
See https://stackexchange.com/leagues/1/alltime/stackoverflow | https://api.github.com/repos/chubin/cheat.sh/pulls/285 | 2021-02-27T21:14:24Z | 2021-02-28T07:00:50Z | 2021-02-28T07:00:50Z | 2021-02-28T12:24:49Z | 871 | chubin/cheat.sh | 15,154 |
Remove comment about renewer | diff --git a/certbot/main.py b/certbot/main.py
index 8fa6ebfc63a..089eab0c3dd 100644
--- a/certbot/main.py
+++ b/certbot/main.py
@@ -473,8 +473,7 @@ def _report_new_cert(config, cert_path, fullchain_path, key_path=None):
def _determine_account(config):
"""Determine which account to use.
- In order to make th... | It's been a while since we had a separate renewer. | https://api.github.com/repos/certbot/certbot/pulls/6115 | 2018-06-14T22:47:17Z | 2018-06-15T08:43:49Z | 2018-06-15T08:43:49Z | 2018-07-11T22:18:20Z | 174 | certbot/certbot | 280 |
Added missing word in practices.rst | diff --git a/docs/topics/practices.rst b/docs/topics/practices.rst
index 14af1318b6f..9c7040519fc 100644
--- a/docs/topics/practices.rst
+++ b/docs/topics/practices.rst
@@ -16,7 +16,7 @@ You can use the :ref:`API <topics-api>` to run Scrapy from a script, instead of
the typical way of running Scrapy via ``scrapy crawl... | https://api.github.com/repos/scrapy/scrapy/pulls/617 | 2014-02-27T14:53:45Z | 2014-02-27T15:03:57Z | 2014-02-27T15:03:57Z | 2014-06-16T12:03:39Z | 184 | scrapy/scrapy | 34,487 | |
DOC: contributing.rst, document fast doc building | diff --git a/doc/README.rst b/doc/README.rst
index 29c4113f90909..a1e32c7014648 100644
--- a/doc/README.rst
+++ b/doc/README.rst
@@ -133,6 +133,16 @@ If you want to do a full clean build, do::
python make.py build
+Staring with 0.13.1 you can tell ``make.py`` to compile only a single section
+of the docs, grea... | @jreback, don't say you didn't know about this feature later.
| https://api.github.com/repos/pandas-dev/pandas/pulls/6193 | 2014-01-30T21:54:28Z | 2014-01-30T21:54:38Z | 2014-01-30T21:54:38Z | 2014-06-26T23:16:21Z | 220 | pandas-dev/pandas | 45,117 |
[MRG+1] settings: fixing name of the pipeline template | diff --git a/scrapy/templates/project/module/settings.py.tmpl b/scrapy/templates/project/module/settings.py.tmpl
index 72f25ebefea..486df6b718e 100644
--- a/scrapy/templates/project/module/settings.py.tmpl
+++ b/scrapy/templates/project/module/settings.py.tmpl
@@ -65,7 +65,7 @@ ROBOTSTXT_OBEY = True
# Configure item p... | `scrapy startproject myproject` creates a `pipelines.py` with an example Pipeline with already the name of the project, it only feels natural that this should also be the name on `settings.py` pipelines section. | https://api.github.com/repos/scrapy/scrapy/pulls/2466 | 2016-12-24T16:57:29Z | 2017-02-02T12:16:57Z | 2017-02-02T12:16:57Z | 2017-02-02T12:16:58Z | 165 | scrapy/scrapy | 34,609 |
Do not codespell any foreign language README.*.md | diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml
index 9bc619faa..c21f7a642 100644
--- a/.github/workflows/codespell.yml
+++ b/.github/workflows/codespell.yml
@@ -4,7 +4,7 @@ jobs:
codespell:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actio... | ## Type of changes
- [ ] Bug fix
- [ ] New feature
- [ ] Documentation / docstrings
- [x] Tests
- [ ] Other
## Checklist
- [ ] I've run the latest [black](https://github.com/psf/black) with default args on new code.
- [ ] I've updated CHANGELOG.md and CONTRIBUTORS.md where appropriate.
- [ ] I've added t... | https://api.github.com/repos/Textualize/rich/pulls/2177 | 2022-04-08T05:18:33Z | 2022-04-13T14:01:38Z | 2022-04-13T14:01:38Z | 2022-04-13T14:42:29Z | 233 | Textualize/rich | 48,658 |
Update README.md | diff --git a/topics/kubernetes/README.md b/topics/kubernetes/README.md
index 6c4ae039b..982a13f8b 100644
--- a/topics/kubernetes/README.md
+++ b/topics/kubernetes/README.md
@@ -314,6 +314,7 @@ Outputs the status of each of the control plane components.
<details>
<summary>What happens to running pods if if you stop Ku... | Added the missing answer of the question | https://api.github.com/repos/bregman-arie/devops-exercises/pulls/10248 | 2024-01-28T12:25:28Z | 2024-02-02T13:14:43Z | 2024-02-02T13:14:43Z | 2024-02-02T13:14:43Z | 418 | bregman-arie/devops-exercises | 17,643 |
[serve] Add initial support for @serve.deployment syntax | diff --git a/python/ray/serve/__init__.py b/python/ray/serve/__init__.py
index c39a81c4fcb84..9ace05d219dfa 100644
--- a/python/ray/serve/__init__.py
+++ b/python/ray/serve/__init__.py
@@ -2,7 +2,7 @@
accept_batch, connect, start, get_replica_context, get_handle,
shadow_traffic, set_traffic, delete_backend, l... | <!-- Thank you for your contribution! Please review https://github.com/ray-project/ray/blob/master/CONTRIBUTING.rst before opening a pull request. -->
<!-- Please add a reviewer to the assignee section when you create a PR. If you don't have the access to it, we will shortly find a reviewer and assign them to your P... | https://api.github.com/repos/ray-project/ray/pulls/14869 | 2021-03-23T14:55:05Z | 2021-03-23T20:07:44Z | 2021-03-23T20:07:44Z | 2021-03-23T20:07:44Z | 2,708 | ray-project/ray | 19,656 |
Allow non-interactive revocation without deleting certificates | diff --git a/certbot/cli.py b/certbot/cli.py
index 62246227847..f0fa7eb7ebe 100644
--- a/certbot/cli.py
+++ b/certbot/cli.py
@@ -1220,6 +1220,18 @@ def _create_subparsers(helpful):
key=constants.REVOCATION_REASONS.get)),
action=_EncodeReasonAction, de... | Fixes #5323. | https://api.github.com/repos/certbot/certbot/pulls/5386 | 2018-01-08T19:11:53Z | 2018-01-09T01:02:21Z | 2018-01-09T01:02:21Z | 2018-01-09T01:02:23Z | 2,067 | certbot/certbot | 44 |
Add -gptq-preload for 4-bit offloading | diff --git a/modules/GPTQ_loader.py b/modules/GPTQ_loader.py
index 7045a0986c..67899547b5 100644
--- a/modules/GPTQ_loader.py
+++ b/modules/GPTQ_loader.py
@@ -9,6 +9,7 @@
sys.path.insert(0, str(Path("repositories/GPTQ-for-LLaMa")))
import llama
+import llama_inference_offload
import opt
@@ -24,7 +25,10 @@ def ... | This works in a 4GB card now:
```
python server.py --model llama-7b-hf --gptq-bits 4 --gptq-pre-layer 20
``` | https://api.github.com/repos/oobabooga/text-generation-webui/pulls/460 | 2023-03-20T19:30:36Z | 2023-03-20T19:30:56Z | 2023-03-20T19:30:56Z | 2023-03-22T18:42:49Z | 1,280 | oobabooga/text-generation-webui | 26,752 |
Update sessions.py | diff --git a/requests/sessions.py b/requests/sessions.py
index d73d700fa6..ebfdecedc3 100644
--- a/requests/sessions.py
+++ b/requests/sessions.py
@@ -201,10 +201,7 @@ def resolve_redirects(self, resp, req, stream=False, timeout=None,
prepared_request.body = None
headers = prepared_reque... | -Made removing a key-value pair more modular
-Remove unneeeded return statement | https://api.github.com/repos/psf/requests/pulls/5105 | 2019-05-29T18:49:53Z | 2019-08-20T04:14:37Z | 2019-08-20T04:14:37Z | 2021-08-31T00:07:05Z | 218 | psf/requests | 32,075 |
Hitbtc3 'has' | diff --git a/js/hitbtc3.js b/js/hitbtc3.js
index b01c2fd198fa..98710cf32b0d 100644
--- a/js/hitbtc3.js
+++ b/js/hitbtc3.js
@@ -18,7 +18,7 @@ module.exports = class hitbtc3 extends Exchange {
'has': {
'CORS': false,
'spot': true,
- 'margin': undefined, // has... | Set the remaining margin methods to undefined and set margin to true. | https://api.github.com/repos/ccxt/ccxt/pulls/12611 | 2022-04-02T23:08:03Z | 2022-04-03T00:24:19Z | 2022-04-03T00:24:19Z | 2022-04-03T00:24:20Z | 397 | ccxt/ccxt | 13,883 |
Added a test to ensure empty sessions are saved. | diff --git a/tests/sessions_tests/tests.py b/tests/sessions_tests/tests.py
index 713ff9e55319c..76e625aa76fbc 100644
--- a/tests/sessions_tests/tests.py
+++ b/tests/sessions_tests/tests.py
@@ -695,6 +695,45 @@ def test_flush_empty_without_session_cookie_doesnt_set_cookie(self):
# The session is accessed so "Va... | This test fails if the `not bool(self._session_key)` condition in `SessionBase.is_empty()` is removed (currently no other tests do).
| https://api.github.com/repos/django/django/pulls/5153 | 2015-08-18T21:58:55Z | 2015-08-20T14:45:08Z | 2015-08-20T14:45:08Z | 2015-08-20T15:35:46Z | 506 | django/django | 51,179 |
Add TaskReply types for task hooks | diff --git a/website/src/components/Tasks/CreateTask.tsx b/website/src/components/Tasks/CreateTask.tsx
index 8d406fd755..448ad28784 100644
--- a/website/src/components/Tasks/CreateTask.tsx
+++ b/website/src/components/Tasks/CreateTask.tsx
@@ -8,6 +8,7 @@ import { TaskSurveyProps } from "src/components/Tasks/Task";
imp... | With the PR every part of the task process is now typed.
We still do a lot of casting around which is not ideal but this works for now. | https://api.github.com/repos/LAION-AI/Open-Assistant/pulls/1078 | 2023-02-03T07:31:29Z | 2023-02-03T08:33:25Z | 2023-02-03T08:33:25Z | 2023-02-03T08:33:26Z | 3,188 | LAION-AI/Open-Assistant | 37,539 |
[client] Fix ray client object ref releasing in wrong context. | diff --git a/python/ray/_raylet.pxd b/python/ray/_raylet.pxd
index 7715063ea8ec0..29cdc56118704 100644
--- a/python/ray/_raylet.pxd
+++ b/python/ray/_raylet.pxd
@@ -93,6 +93,7 @@ cdef class ObjectRef(BaseID):
cdef class ClientObjectRef(ObjectRef):
cdef object _mutex
cdef object _id_future
+ cdef object _c... | <!-- Thank you for your contribution! Please review https://github.com/ray-project/ray/blob/master/CONTRIBUTING.rst before opening a pull request. -->
<!-- Please add a reviewer to the assignee section when you create a PR. If you don't have the access to it, we will shortly find a reviewer and assign them to your P... | https://api.github.com/repos/ray-project/ray/pulls/22025 | 2022-02-01T04:30:26Z | 2022-02-02T06:42:40Z | 2022-02-02T06:42:40Z | 2022-02-04T04:48:35Z | 1,970 | ray-project/ray | 19,905 |
Bump certbot's acme depenency to 0.22.1 | diff --git a/setup.py b/setup.py
index 3667a6976a4..ba521ed2aed 100644
--- a/setup.py
+++ b/setup.py
@@ -34,9 +34,7 @@ def read_file(filename, encoding='utf8'):
# specified here to avoid masking the more specific request requirements in
# acme. See https://github.com/pypa/pip/issues/988 for more info.
install_requir... | Fixes #5821. Also removed the comment about `local-oldest-requirements.txt` since it doesn't seem to be relevant anymore. | https://api.github.com/repos/certbot/certbot/pulls/5826 | 2018-04-04T20:04:34Z | 2018-04-11T21:36:54Z | 2018-04-11T21:36:53Z | 2018-04-11T21:36:58Z | 215 | certbot/certbot | 3,509 |
2.2.1 | diff --git a/docs/news.rst b/docs/news.rst
index 80d130e4a71..fd507c3cc55 100644
--- a/docs/news.rst
+++ b/docs/news.rst
@@ -3,6 +3,16 @@
Release notes
=============
+.. _release-2.2.1:
+
+Scrapy 2.2.1 (2020-07-17)
+-------------------------
+
+* The :command:`startproject` command no longer makes unintended chan... | https://api.github.com/repos/scrapy/scrapy/pulls/4685 | 2020-07-17T10:16:15Z | 2020-07-17T10:41:28Z | 2020-07-17T10:41:28Z | 2020-07-17T10:41:28Z | 2,266 | scrapy/scrapy | 35,131 | |
Refactor persistence logic; use single file for persistence | diff --git a/localstack/config.py b/localstack/config.py
index 35337cb614c2a..ffaf6cbaf1c66 100644
--- a/localstack/config.py
+++ b/localstack/config.py
@@ -192,9 +192,10 @@ def in_docker():
if LOCALSTACK_HOSTNAME == HOSTNAME:
DOCKER_HOST_FROM_CONTAINER = 'host.docker.internal'
# update LOCAL... | * Refactor persistence logic
* Use single file for persistence
* Add `response` to list of arguments for persisting API calls | https://api.github.com/repos/localstack/localstack/pulls/2011 | 2020-02-02T20:36:38Z | 2020-02-03T08:58:30Z | 2020-02-03T08:58:30Z | 2021-04-21T07:10:57Z | 2,411 | localstack/localstack | 28,851 |
Add Introduction to Data-Centric AI | diff --git a/courses.md b/courses.md
index e30d6a18..b02898b4 100644
--- a/courses.md
+++ b/courses.md
@@ -53,6 +53,7 @@ The following is a list of free or paid online courses on machine learning, stat
* [Deploying a Deep Learning Model on Web and Mobile Applications Using TensorFlow](https://www.manning.com/liveproje... | https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/916 | 2023-02-22T16:46:01Z | 2023-03-03T14:12:44Z | 2023-03-03T14:12:44Z | 2023-03-03T14:12:44Z | 255 | josephmisiti/awesome-machine-learning | 52,095 | |
[doc] update document of zero with chunk. | diff --git a/docs/source/en/features/zero_with_chunk.md b/docs/source/en/features/zero_with_chunk.md
index d7a99f2fbbfd..d6f6f611a64c 100644
--- a/docs/source/en/features/zero_with_chunk.md
+++ b/docs/source/en/features/zero_with_chunk.md
@@ -3,7 +3,7 @@
Author: [Hongxiu Liu](https://github.com/ver217), [Jiarui Fang](... | ## 📌 Checklist before creating the PR
- [x] I have created an issue for this PR for traceability
- [x] The title follows the standard format: `[doc/gemini/tensor/...]: A concise description`
- [x] I have added relevant tags if possible for us to better distinguish different PRs
## 🚨 Issue number
> Link t... | https://api.github.com/repos/hpcaitech/ColossalAI/pulls/3855 | 2023-05-26T03:23:34Z | 2023-05-30T10:41:56Z | 2023-05-30T10:41:56Z | 2023-05-30T10:41:57Z | 3,009 | hpcaitech/ColossalAI | 11,219 |
tf backend supports bool variable | diff --git a/keras/backend/tensorflow_backend.py b/keras/backend/tensorflow_backend.py
index fad9b20ea30..eff4a3c122b 100644
--- a/keras/backend/tensorflow_backend.py
+++ b/keras/backend/tensorflow_backend.py
@@ -180,32 +180,6 @@ def set_session(session):
# VARIABLE MANIPULATION
-def _convert_string_dtype(dtype):
... | use `tf.as_dtype` to convert string to Dtype , see #7819
### How to test
+ [x] add unit test.
+ [x] pass all tests. | https://api.github.com/repos/keras-team/keras/pulls/7832 | 2017-09-07T04:19:08Z | 2017-09-09T00:19:48Z | 2017-09-09T00:19:48Z | 2017-09-09T00:23:54Z | 1,281 | keras-team/keras | 46,952 |
timeframe 4h for bitfinex | diff --git a/js/bitfinex2.js b/js/bitfinex2.js
index ee47e8582eb9..fab2ca2fa94c 100644
--- a/js/bitfinex2.js
+++ b/js/bitfinex2.js
@@ -53,6 +53,7 @@ module.exports = class bitfinex2 extends bitfinex {
'30m': '30m',
'1h': '1h',
'3h': '3h',
+ '4h': '4h',
... | added: timeframe 4h for bitfinex | https://api.github.com/repos/ccxt/ccxt/pulls/8470 | 2021-02-16T16:31:09Z | 2021-02-16T17:04:22Z | 2021-02-16T17:04:22Z | 2021-02-16T17:04:22Z | 144 | ccxt/ccxt | 13,599 |
DOC Fix typo on comment about t-SNE | diff --git a/doc/modules/manifold.rst b/doc/modules/manifold.rst
index 72e8c7485df44..e6e8e842fa7fc 100644
--- a/doc/modules/manifold.rst
+++ b/doc/modules/manifold.rst
@@ -602,7 +602,7 @@ be well separated by non linear methods that focus on the local structure (e.g.
an SVM with a Gaussian RBF kernel). However, faili... | This is just a small correction in the text.
An alternative fix could be this:
> It might be the case that 2 dimensions are too low to accurately represent the internal structure of the data. | https://api.github.com/repos/scikit-learn/scikit-learn/pulls/20009 | 2021-04-29T20:29:24Z | 2021-04-29T23:33:33Z | 2021-04-29T23:33:33Z | 2021-04-29T23:39:38Z | 179 | scikit-learn/scikit-learn | 46,516 |
Defines the RenewableCert API | diff --git a/certbot/certbot/_internal/storage.py b/certbot/certbot/_internal/storage.py
index bb36f462adc..72eb3de85e0 100644
--- a/certbot/certbot/_internal/storage.py
+++ b/certbot/certbot/_internal/storage.py
@@ -17,6 +17,7 @@
from certbot import crypto_util
from certbot._internal import error_handler
from certb... | This is my proposed fix for #7540. I would ideally like this to be included in our 1.0 release.
I came up with this design by adding all attributes used either in our own plugins, 3rd party plugins listed at https://certbot.eff.org/docs/using.html#third-party-plugins, or our public API code.
Despite me thinking t... | https://api.github.com/repos/certbot/certbot/pulls/7603 | 2019-11-26T19:35:50Z | 2019-11-27T19:32:01Z | 2019-11-27T19:32:01Z | 2019-11-27T19:32:20Z | 3,294 | certbot/certbot | 3,096 |
Adds support for proxy authentication and repoview enablement. | diff --git a/lib/ansible/modules/packaging/os/pulp_repo.py b/lib/ansible/modules/packaging/os/pulp_repo.py
index 8b6a676a352803..5fda31ba31b692 100644
--- a/lib/ansible/modules/packaging/os/pulp_repo.py
+++ b/lib/ansible/modules/packaging/os/pulp_repo.py
@@ -40,6 +40,14 @@
the Basic authentication header upon ... | ##### SUMMARY
Adds support for allowing pulp to authenticate through a proxy to download upstream content. This also adds the `repoview` option because this actually broke with the newer Pulp API.
Repeat of #32484 because I screwed up that PR
##### ISSUE TYPE
- Feature Pull Request
##### COMPONENT NAME
p... | https://api.github.com/repos/ansible/ansible/pulls/41908 | 2018-06-25T15:16:22Z | 2018-11-24T17:54:16Z | 2018-11-24T17:54:16Z | 2019-07-22T16:00:27Z | 1,888 | ansible/ansible | 48,716 |
Rename Template | diff --git a/templates/chat-bot-feedback/chat_bot_feedback/__init__.py b/templates/chat-bot-feedback/chat_bot_feedback/__init__.py
index 06d4114d28ee60..e51bb07ae8b866 100644
--- a/templates/chat-bot-feedback/chat_bot_feedback/__init__.py
+++ b/templates/chat-bot-feedback/chat_bot_feedback/__init__.py
@@ -1,3 +1,3 @@
-... | To chatbot feedback. Update import | https://api.github.com/repos/langchain-ai/langchain/pulls/12649 | 2023-10-31T16:12:51Z | 2023-10-31T16:15:30Z | 2023-10-31T16:15:30Z | 2023-10-31T16:15:31Z | 114 | langchain-ai/langchain | 43,092 |
Swebench di | diff --git a/sub_swebench_dataset/readme.md b/sub_swebench_dataset/readme.md
new file mode 100644
index 000000000..77fb23b2a
--- /dev/null
+++ b/sub_swebench_dataset/readme.md
@@ -0,0 +1,71 @@
+# Dataset Description
+
+The index of sub_swebench is a subset of swebench, with two columns in total, each column containing ... |
**Explanation**
<!-- Added a sub_swebench folder. This folder contains a readme and a subset of swebench consisting of instance IDs.-->
| https://api.github.com/repos/geekan/MetaGPT/pulls/1038 | 2024-03-19T07:28:59Z | 2024-03-19T07:52:08Z | 2024-03-19T07:52:08Z | 2024-03-19T07:52:08Z | 622 | geekan/MetaGPT | 16,684 |
Make sure netrc doesn't override any authentication settings explicitly set by the client | diff --git a/requests/sessions.py b/requests/sessions.py
index 6d1000dc52..c24ed5aa4c 100644
--- a/requests/sessions.py
+++ b/requests/sessions.py
@@ -289,8 +289,8 @@ def request(self, method, url,
for (k, v) in env_proxies.items():
proxies.setdefault(k, v)
- # Set environment... | This fixes issue #1438.
.netrc is still going to be used by default if it's available (that's the intended behavior based on #446), but now any explicit settings (whether they're set on the session or passed to request()) will take precedence.
| https://api.github.com/repos/psf/requests/pulls/1439 | 2013-06-27T21:24:25Z | 2013-07-15T13:22:54Z | 2013-07-15T13:22:54Z | 2021-09-08T23:06:30Z | 479 | psf/requests | 32,047 |
Refs #29892 -- Replaced Selenium .submit() shim with .click() on the submit button. | diff --git a/tests/admin_widgets/tests.py b/tests/admin_widgets/tests.py
index 32f065b325ea1..f854f4dc207d7 100644
--- a/tests/admin_widgets/tests.py
+++ b/tests/admin_widgets/tests.py
@@ -941,7 +941,7 @@ def test_date_time_picker_shortcuts(self):
# Submit the form.
with self.wait_page_loaded():
- ... | There is no WebDriver submit primitive. The Selenium project implements
it as a convenience only. The geckodriver developers recommend against
using it. Replace it with a real primitive, click on the submit button.
Fixes failing Seleninum test test_date_time_picker_shortcuts when using
the Firefox Selenium driver... | https://api.github.com/repos/django/django/pulls/12147 | 2019-11-26T13:03:19Z | 2019-11-28T08:24:19Z | 2019-11-28T08:24:19Z | 2019-11-28T11:20:47Z | 143 | django/django | 50,901 |
Use yield from instead of looping yield | diff --git a/requests/models.py b/requests/models.py
index 7e1522837f..3cd49f5bba 100644
--- a/requests/models.py
+++ b/requests/models.py
@@ -813,8 +813,7 @@ def generate():
# Special case for urllib3.
if hasattr(self.raw, "stream"):
try:
- for chunk in sel... | This merge request updates the stream yield functionality to use `yield from` instead of `yield` within a for loop. Because this is yielding from an iterable, we can use `yield from` which is not only slightly shorter but also on average 15% more performant than using `yield` inside of a loop. This is a result of some ... | https://api.github.com/repos/psf/requests/pulls/6170 | 2022-06-20T13:01:10Z | 2022-06-29T02:08:26Z | 2022-06-29T02:08:26Z | 2023-06-30T00:03:08Z | 138 | psf/requests | 32,630 |
FIX tol in SGDRegressorBenchmark | diff --git a/asv_benchmarks/benchmarks/linear_model.py b/asv_benchmarks/benchmarks/linear_model.py
index 663ceca61d063..b694a109329f0 100644
--- a/asv_benchmarks/benchmarks/linear_model.py
+++ b/asv_benchmarks/benchmarks/linear_model.py
@@ -164,7 +164,11 @@ def make_data(self, params):
return data
def m... | <!--
Thanks for contributing a pull request! Please ensure you have taken a look at
the contribution guidelines: https://github.com/scikit-learn/scikit-learn/blob/main/CONTRIBUTING.md
-->
#### Reference Issues/PRs
<!--
Example: Fixes #1234. See also #3456.
Please use keywords (e.g., Fixes) to create link to th... | https://api.github.com/repos/scikit-learn/scikit-learn/pulls/26146 | 2023-04-11T12:43:10Z | 2023-04-14T10:24:17Z | 2023-04-14T10:24:17Z | 2023-04-19T11:05:27Z | 185 | scikit-learn/scikit-learn | 46,520 |
Make auto saved workflow stored per tab | diff --git a/web/scripts/api.js b/web/scripts/api.js
index 3a9bcc87a4..8c8155be66 100644
--- a/web/scripts/api.js
+++ b/web/scripts/api.js
@@ -5,6 +5,7 @@ class ComfyApi extends EventTarget {
super();
this.api_host = location.host;
this.api_base = location.pathname.split('/').slice(0, -1).join('/');
+ this.in... | Stores the workflow and client id in sessionStorage so when working with multiple tabs and a tab is refreshed, the correct workflow will be loaded instead of the one that happened to save last.
Also means when you duplicate a tab, you'll get the correct workflow. There appears to be a bug in Firefox where a duplicat... | https://api.github.com/repos/comfyanonymous/ComfyUI/pulls/2672 | 2024-01-29T18:48:23Z | 2024-01-30T00:39:08Z | 2024-01-30T00:39:08Z | 2024-01-30T00:39:08Z | 623 | comfyanonymous/ComfyUI | 17,798 |
Correct the actual unescaped character | diff --git a/docs/quickstart.rst b/docs/quickstart.rst
index 9bddbfc0a7..e07e8dbf9d 100644
--- a/docs/quickstart.rst
+++ b/docs/quickstart.rst
@@ -468,7 +468,7 @@ Here is a basic introduction to how the :class:`~markupsafe.Markup` class works:
>>> Markup.escape('<blink>hacker</blink>')
Markup('<blink>ha... | `»` should be unescaped to `»` after `striptags`.
Ref: https://flask.palletsprojects.com/en/2.0.x/api/#flask.Markup.striptags | https://api.github.com/repos/pallets/flask/pulls/4332 | 2021-11-07T02:20:02Z | 2021-11-07T14:20:43Z | 2021-11-07T14:20:43Z | 2021-11-22T00:03:32Z | 167 | pallets/flask | 20,378 |
Disable stale for PRs | diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
index fe9b55ec99b..d8e227c77b9 100644
--- a/.github/workflows/stale.yml
+++ b/.github/workflows/stale.yml
@@ -17,9 +17,15 @@ jobs:
# Idle number of days before marking issues stale
days-before-issue-stale: 365
+ # Ne... | I noticed our stale action is processing PRs. See https://github.com/certbot/certbot/actions/runs/4169673316/jobs/7217894512#step:2:1225 for example. I believe we only wanted to mark issues as stale.
It's not very clear in the documentation, but I think setting these values to -1 should stop it wanting to modify PRs... | https://api.github.com/repos/certbot/certbot/pulls/9577 | 2023-02-14T16:55:19Z | 2023-02-14T20:28:10Z | 2023-02-14T20:28:09Z | 2023-02-14T20:28:12Z | 175 | certbot/certbot | 863 |
ccxt.d.ts: add Exchange#fetchTime(). | diff --git a/ccxt.d.ts b/ccxt.d.ts
index 99ed70c593c1..7c08fba64485 100644
--- a/ccxt.d.ts
+++ b/ccxt.d.ts
@@ -295,6 +295,7 @@ declare module 'ccxt' {
loadMarkets (reload?: boolean): Promise<{ [symbol: string]: Market }>;
fetchTicker (symbol: string, params?: { [x: string]: any }): Promise<Ticker>;
... | https://api.github.com/repos/ccxt/ccxt/pulls/5889 | 2019-09-29T23:10:47Z | 2019-09-30T09:13:48Z | 2019-09-30T09:13:47Z | 2019-10-01T01:38:04Z | 181 | ccxt/ccxt | 13,035 | |
Editing P.9: "Don't waste time or space" Example Text | diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md
index 49a10134c..27ad3686f 100644
--- a/CppCoreGuidelines.md
+++ b/CppCoreGuidelines.md
@@ -1055,8 +1055,8 @@ There are several more performance bugs and gratuitous complication.
for (int i = 0; i < strlen(s); ++i) s[i] = tolower(s[i]);
}
-Yes, th... | Hi there, this example came up in a discussion with a newer coder in an #include channel. We explained what was going on with it and had a little talk about how it didn't seem helpful not to just explain it. Thus this PR was born. | https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/1439 | 2019-06-08T23:14:22Z | 2019-06-20T18:12:30Z | 2019-06-20T18:12:30Z | 2019-06-20T18:12:43Z | 327 | isocpp/CppCoreGuidelines | 15,720 |
[MRG +1] ColumnTransformer: store evaluated function column specifier during fit | diff --git a/sklearn/compose/_column_transformer.py b/sklearn/compose/_column_transformer.py
index e09d2d09d7e43..9014623280d2e 100644
--- a/sklearn/compose/_column_transformer.py
+++ b/sklearn/compose/_column_transformer.py
@@ -211,20 +211,29 @@ def set_params(self, **kwargs):
self._set_params('_transformers'... | Fixes https://github.com/scikit-learn/scikit-learn/issues/12097 | https://api.github.com/repos/scikit-learn/scikit-learn/pulls/12107 | 2018-09-18T14:57:09Z | 2018-09-21T11:22:35Z | 2018-09-21T11:22:35Z | 2018-10-19T15:12:19Z | 1,727 | scikit-learn/scikit-learn | 46,486 |
Add | diff --git a/add two no b/add two no
new file mode 100644
index 0000000000..d1b6fd9e45
--- /dev/null
+++ b/add two no
@@ -0,0 +1,7 @@
+num1 = 1.5
+num2 = 6.3
+
+
+sum = num1 + num2
+
+print('The sum of {0} and {1} is {2}'.format(num1, num2, sum))
| Addition of two no | https://api.github.com/repos/geekcomputers/Python/pulls/1074 | 2020-10-06T14:48:20Z | 2020-10-10T20:39:56Z | 2020-10-10T20:39:56Z | 2020-10-10T20:39:56Z | 113 | geekcomputers/Python | 31,453 |
TST: add note about scope of base extension tests to all files | diff --git a/pandas/tests/extension/test_datetime.py b/pandas/tests/extension/test_datetime.py
index 0fde1e8a2fdb8..281bbc21e3106 100644
--- a/pandas/tests/extension/test_datetime.py
+++ b/pandas/tests/extension/test_datetime.py
@@ -1,3 +1,18 @@
+"""
+This file contains a minimal set of tests for compliance with the ex... | We already had this note in about half of the files in this directory, copied it to include in the other files as well. | https://api.github.com/repos/pandas-dev/pandas/pulls/39003 | 2021-01-06T15:47:35Z | 2021-01-06T18:34:18Z | 2021-01-06T18:34:18Z | 2021-01-12T08:05:04Z | 1,154 | pandas-dev/pandas | 44,876 |
ansible-test: make the httptester for Windows more resiliant around the shell chosen | diff --git a/test/runner/lib/executor.py b/test/runner/lib/executor.py
index e593d8b21210e2..f0310a8d22322c 100644
--- a/test/runner/lib/executor.py
+++ b/test/runner/lib/executor.py
@@ -583,9 +583,9 @@ def forward_ssh_ports(target):
manage = ManageWindowsCI(remote)
manage.uplo... | ##### SUMMARY
Currently the httptester bootstrap process for Windows only works when the default shell for SSH is set to `cmd` (or not set at all). This change makes the process compatible with both `cmd` as well as `powershell`.
##### ISSUE TYPE
- Bugfix Pull Request
##### COMPONENT NAME
ansible-test | https://api.github.com/repos/ansible/ansible/pulls/51416 | 2019-01-29T05:14:01Z | 2019-01-29T21:50:24Z | 2019-01-29T21:50:24Z | 2019-07-25T16:37:55Z | 662 | ansible/ansible | 49,254 |
hitbtc more accountsByType mapping | diff --git a/js/hitbtc.js b/js/hitbtc.js
index 5bc3b8fd7b8a..035bcd3a0cb0 100644
--- a/js/hitbtc.js
+++ b/js/hitbtc.js
@@ -177,6 +177,9 @@ module.exports = class hitbtc extends Exchange {
'bank': 'bank',
'exchange': 'exchange',
'main': 'bank', // alias of ... | https://api.github.com/repos/ccxt/ccxt/pulls/9735 | 2021-08-03T13:10:16Z | 2021-08-03T14:00:47Z | 2021-08-03T14:00:47Z | 2021-08-03T14:00:47Z | 146 | ccxt/ccxt | 13,737 | |
Enable no-else-return rule in ESLint | diff --git a/frontend/.eslintrc b/frontend/.eslintrc
index 6cb6df15b1f4..b91c8706dbd2 100644
--- a/frontend/.eslintrc
+++ b/frontend/.eslintrc
@@ -114,7 +114,8 @@
"no-relative-import-paths/no-relative-import-paths": [
"error",
{ "allowSameFolder": true, "rootDir": "src", "prefix": "src" }
- ]
+ ... | <!--
Before contributing (PLEASE READ!)
⚠️ If your contribution is more than a few lines of code, then prior to starting to code on it please post in the issue saying you want to volunteer, then wait for a positive response. And if there is no issue for it yet, create it first.
This helps make sure:
1. Two ... | https://api.github.com/repos/streamlit/streamlit/pulls/6205 | 2023-03-02T11:26:06Z | 2023-03-09T09:18:30Z | 2023-03-09T09:18:30Z | 2023-03-09T09:59:46Z | 148 | streamlit/streamlit | 22,004 |
Fix typo | diff --git a/docs/docs_skeleton/docs/get_started/quickstart.mdx b/docs/docs_skeleton/docs/get_started/quickstart.mdx
index 8250083adc48d0..8af28aa2970ba2 100644
--- a/docs/docs_skeleton/docs/get_started/quickstart.mdx
+++ b/docs/docs_skeleton/docs/get_started/quickstart.mdx
@@ -138,7 +138,7 @@ The chains and agents we'... | This PR fixes a typo. | https://api.github.com/repos/langchain-ai/langchain/pulls/7023 | 2023-07-01T16:38:01Z | 2023-07-02T07:17:31Z | 2023-07-02T07:17:30Z | 2023-07-02T08:22:42Z | 443 | langchain-ai/langchain | 42,895 |
Added LectServe to Calendar | diff --git a/README.md b/README.md
index 33bd438deb..918b513263 100644
--- a/README.md
+++ b/README.md
@@ -97,6 +97,7 @@ For information on contributing to this project, please see the [contributing gu
| Church Calendar | Catholic liturgical calendar | No | No | [Go!](http://calapi.inadiutorium.cz/) |
| Date and Time... | LectServe is a Protestant lectionary featuring the Revised Common
Lectionary and the ACNA Lectionary | https://api.github.com/repos/public-apis/public-apis/pulls/287 | 2017-02-15T20:27:11Z | 2017-02-15T20:58:56Z | 2017-02-15T20:58:56Z | 2017-02-15T20:58:56Z | 221 | public-apis/public-apis | 35,195 |
[RLlib contrib] Fix rllib contrib readmes | diff --git a/rllib_contrib/a3c/README.md b/rllib_contrib/a3c/README.md
new file mode 100644
index 0000000000000..897ebfea96b39
--- /dev/null
+++ b/rllib_contrib/a3c/README.md
@@ -0,0 +1,17 @@
+# A3C (Asynchronous Advantage Actor-Critic)
+
+[A3C](https://arxiv.org/abs/1602.01783) is the asynchronous version of A2C, wher... | <!-- Thank you for your contribution! Please review https://github.com/ray-project/ray/blob/master/CONTRIBUTING.rst before opening a pull request. -->
The formatting is broken in the rllib contrib readmes. This pr fixes this by using relative links.
<!-- Please add a reviewer to the assignee section when you crea... | https://api.github.com/repos/ray-project/ray/pulls/35347 | 2023-05-15T18:29:06Z | 2023-05-18T18:24:26Z | 2023-05-18T18:24:26Z | 2023-05-18T18:24:26Z | 1,530 | ray-project/ray | 19,538 |
Add missing newline to delimit sections in blns.txt | diff --git a/blns.txt b/blns.txt
index 6f2a848..019041b 100644
--- a/blns.txt
+++ b/blns.txt
@@ -214,6 +214,7 @@ __ロ(,_,*)
﷽
ﷺ
مُنَاقَشَةُ سُبُلِ اِسْتِخْدَامِ اللُّغَةِ فِي النُّظُمِ الْقَائِمَةِ وَفِيم يَخُصَّ التَّطْبِيقَاتُ الْحاسُوبِيَّةُ،
+
# Unicode Spaces
#
# Strings which contain unicode space character... | https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/pulls/119 | 2017-01-16T21:33:04Z | 2017-01-16T21:35:35Z | 2017-01-16T21:35:35Z | 2017-01-19T04:29:41Z | 177 | minimaxir/big-list-of-naughty-strings | 4,880 | |
show host_vars/ also in --graph (#56307) | diff --git a/changelogs/fragments/show_host_vars_in_graph.yml b/changelogs/fragments/show_host_vars_in_graph.yml
new file mode 100644
index 00000000000000..fa747080a56be3
--- /dev/null
+++ b/changelogs/fragments/show_host_vars_in_graph.yml
@@ -0,0 +1,2 @@
+bugfixes:
+ - show host_vars in ansible-inventory's --graph op... | * show host_vars/ also in --graph
fixes #53422
(cherry picked from commit de87b25a450f08307e7f7bcb241144e1b2c52aeb)
##### ISSUE TYPE
<!--- Pick one below and delete the rest -->
- Bugfix Pull Request
##### COMPONENT NAME
<!--- Write the short name of the module, plugin, task or feature below -->
ans... | https://api.github.com/repos/ansible/ansible/pulls/57857 | 2019-06-14T17:41:37Z | 2019-06-18T04:58:42Z | 2019-06-18T04:58:42Z | 2019-08-05T16:01:19Z | 942 | ansible/ansible | 49,550 |
feat(gate): fix fetchOpenInterestHistory | diff --git a/ts/src/gate.ts b/ts/src/gate.ts
index 6534533f7357..1e8a9e7e0996 100644
--- a/ts/src/gate.ts
+++ b/ts/src/gate.ts
@@ -5577,8 +5577,8 @@ export default class gate extends Exchange {
*/
await this.loadMarkets ();
const market = this.market (symbol);
- if (!market['future'])... | - fixes https://github.com/ccxt/ccxt/issues/18427
DEMO
```
p gate fetchOpenInterestHistory "BTC/USDT:USDT" "5m" None 2
Python v3.10.9
CCXT v4.0.3
gate.fetchOpenInterestHistory(BTC/USDT:USDT,5m,None,2)
[{'datetime': '2023-07-01T13:50:00.000Z',
'info': {'long_liq_amount': '0',
'long_liq_size': '0'... | https://api.github.com/repos/ccxt/ccxt/pulls/18433 | 2023-07-01T13:59:37Z | 2023-07-01T14:29:57Z | 2023-07-01T14:29:57Z | 2023-07-02T12:44:35Z | 164 | ccxt/ccxt | 13,493 |
Validate version of protoc and protobuff | diff --git a/.circleci/config.yml b/.circleci/config.yml
index c648ed1f4783..4e26fedfb992 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -591,7 +591,7 @@ jobs:
python -m venv venv
source venv/bin/activate
pip install --upgrade pip
- pip install pipenv m... | <!--
Before contributing (PLEASE READ!)
⚠️ If your contribution is more than a few lines of code, then prior to starting to code on it please post in the issue saying you want to volunteer, then wait for a positive response. And if there is no issue for it yet, create it first.
This helps make sure:
1. Two ... | https://api.github.com/repos/streamlit/streamlit/pulls/5070 | 2022-08-01T15:48:13Z | 2022-08-03T10:53:45Z | 2022-08-03T10:53:45Z | 2023-10-05T19:27:52Z | 471 | streamlit/streamlit | 22,159 |
Create `labels` dir on labels save | diff --git a/val.py b/val.py
index 8da3ef7667a..b3d05f4305c 100644
--- a/val.py
+++ b/val.py
@@ -72,7 +72,8 @@ def save_one_json(predn, jdict, path, class_map):
def process_batch(detections, labels, iouv):
"""
- Return correct prediction matrix
+ Return correct prediction matrix.
+
Arguments:
... | <!--
Thank you for submitting a YOLOv5 🚀 Pull Request! We want to make contributing to YOLOv5 as easy and transparent as possible. A few tips to get you started:
- Search existing YOLOv5 [PRs](https://github.com/ultralytics/yolov5/pull) to see if a similar PR already exists.
- Link this PR to a YOLOv5 [issue](htt... | https://api.github.com/repos/ultralytics/yolov5/pulls/12551 | 2023-12-26T08:14:28Z | 2023-12-26T22:58:32Z | 2023-12-26T22:58:32Z | 2024-01-19T00:50:29Z | 252 | ultralytics/yolov5 | 25,017 |
fixed regexp to add support of unicode for strings | diff --git a/metagpt/actions/rebuild_sequence_view.py b/metagpt/actions/rebuild_sequence_view.py
index 0e67de908..2aac9bf20 100644
--- a/metagpt/actions/rebuild_sequence_view.py
+++ b/metagpt/actions/rebuild_sequence_view.py
@@ -486,7 +486,7 @@ def parse_participant(mermaid_sequence_diagram: str) -> List[str]:
... | **Features**
<!-- Clear and direct description of the submit features. -->
<!-- If it's a bug fix, please also paste the issue link. -->
- fixed regexp to add support of unicode for strings
**Feature Docs**
<!-- The RFC, tutorial, or use cases about the feature if it's a pretty big update. If not, there is n... | https://api.github.com/repos/geekan/MetaGPT/pulls/1079 | 2024-03-22T13:02:23Z | 2024-04-05T14:08:40Z | 2024-04-05T14:08:40Z | 2024-04-05T14:08:40Z | 180 | geekan/MetaGPT | 16,650 |
certbot: Update storage.get_link_target (#4750) | diff --git a/certbot/storage.py b/certbot/storage.py
index 4f167d4eaa2..d03052dae8d 100644
--- a/certbot/storage.py
+++ b/certbot/storage.py
@@ -186,8 +186,15 @@ def get_link_target(link):
:returns: Absolute path to the target of link
:rtype: str
+ :raises .CertStorageError: If link does not exists.
+
... | * The `get_link_target` function raises `errors.CertStorageError` when
link does not exists. | https://api.github.com/repos/certbot/certbot/pulls/4923 | 2017-07-12T03:18:29Z | 2017-07-13T17:14:00Z | 2017-07-13T17:14:00Z | 2017-07-13T17:14:00Z | 187 | certbot/certbot | 1,490 |
Fix missing bracket in dirty_cat | diff --git a/README.md b/README.md
index 8495c5a9..67bc9517 100644
--- a/README.md
+++ b/README.md
@@ -1221,7 +1221,7 @@ be
* [Shapash](https://github.com/MAIF/shapash) : Shapash is a Python library that provides several types of visualization that display explicit labels that everyone can understand.
* [Eurybia](htt... | Following #867, fixes a missing bracket | https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/869 | 2022-06-30T12:15:58Z | 2022-07-10T14:28:12Z | 2022-07-10T14:28:12Z | 2022-07-10T14:28:13Z | 334 | josephmisiti/awesome-machine-learning | 51,892 |
boruvka.py: A few simplifications and f-strings | diff --git a/DIRECTORY.md b/DIRECTORY.md
index adc9bb9e4699..41485f6f0ca4 100644
--- a/DIRECTORY.md
+++ b/DIRECTORY.md
@@ -97,6 +97,7 @@
* [Peak Signal To Noise Ratio](https://github.com/TheAlgorithms/Python/blob/master/compression/peak_signal_to_noise_ratio.py)
## Computer Vision
+ * [Cnn Classification](https:... | Python f-strings simplify the code and [should speed up execution](https://www.scivision.dev/python-f-string-speed).
I don’t know graphs… ~Are `components` and `nodes` the same things or different things?
If they are the same thing, then we should only use one name in the code and drop the other.~
I looked it up.... | https://api.github.com/repos/TheAlgorithms/Python/pulls/4660 | 2021-08-24T01:13:52Z | 2021-08-24T13:27:32Z | 2021-08-24T13:27:31Z | 2021-08-24T13:29:24Z | 3,499 | TheAlgorithms/Python | 30,284 |
clarify where to call flask run from in tutorial | diff --git a/docs/tutorial/factory.rst b/docs/tutorial/factory.rst
index 62462e1cd7..41a8c768a6 100644
--- a/docs/tutorial/factory.rst
+++ b/docs/tutorial/factory.rst
@@ -127,7 +127,8 @@ Run The Application
Now you can run your application using the ``flask`` command. From the
terminal, tell Flask where to find you... | closes #2967 | https://api.github.com/repos/pallets/flask/pulls/3067 | 2019-01-06T23:11:14Z | 2019-01-06T23:11:31Z | 2019-01-06T23:11:31Z | 2020-11-14T02:33:35Z | 315 | pallets/flask | 20,325 |
Added multiple animal APIs | diff --git a/README.md b/README.md
index 0dbf359f2a..60a4560a6e 100644
--- a/README.md
+++ b/README.md
@@ -60,12 +60,17 @@ Please note a passing build status indicates all listed APIs are available since
### Animals
API | Description | Auth | HTTPS | CORS | Link |
|---|---|---|---|---|---|
+| Cats | Pictures of cats... | Added multiple apis to fetch animal photos
Thank you for taking the time to work on a Pull Request for this project!
To ensure your PR is dealt with swiftly please check the following:
- [x] Your submissions are formatted according to the guidelines in the [contributing guide](CONTRIBUTING.md)
- [x] Your addi... | https://api.github.com/repos/public-apis/public-apis/pulls/637 | 2018-03-22T23:54:58Z | 2018-03-29T01:25:26Z | 2018-03-29T01:25:26Z | 2018-03-29T01:25:28Z | 476 | public-apis/public-apis | 35,445 |
Fix: v0.91.0 of fastapi Cannot add middleware after an application ha… | diff --git a/requirements_versions.txt b/requirements_versions.txt
index eaa08806d32..331d0fe8651 100644
--- a/requirements_versions.txt
+++ b/requirements_versions.txt
@@ -27,3 +27,4 @@ GitPython==3.1.27
torchsde==0.2.5
safetensors==0.2.7
httpcore<=0.15
+fastapi==0.90.1
| …s started
fix https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/7714
```
Traceback (most recent call last):
File "launch.py", line 361, in <module>
start()
File "launch.py", line 356, in start
webui.webui()
File "/content/stable-diffusion-webui/webui.py", line 232, in webui
... | https://api.github.com/repos/AUTOMATIC1111/stable-diffusion-webui/pulls/7717 | 2023-02-10T16:32:23Z | 2023-02-13T05:12:52Z | 2023-02-13T05:12:51Z | 2024-02-18T21:19:53Z | 103 | AUTOMATIC1111/stable-diffusion-webui | 40,474 |
Doc: redis memory management / automatic flushing. | diff --git a/doc/source/index.rst b/doc/source/index.rst
index da488dd7353c8..f1b205f6c10d8 100644
--- a/doc/source/index.rst
+++ b/doc/source/index.rst
@@ -115,6 +115,7 @@ Ray comes with libraries that accelerate deep learning and reinforcement learnin
fault-tolerance.rst
plasma-object-store.rst
resources.... | https://api.github.com/repos/ray-project/ray/pulls/2344 | 2018-07-04T18:10:30Z | 2018-07-06T06:44:38Z | 2018-07-06T06:44:38Z | 2018-07-06T06:44:38Z | 1,085 | ray-project/ray | 19,750 | |
✏️ Fix typos and rewordings in `docs/en/docs/tutorial/body-nested-models.md` | diff --git a/docs/en/docs/tutorial/body-nested-models.md b/docs/en/docs/tutorial/body-nested-models.md
index 3a1052397910c..387f0de9aaed7 100644
--- a/docs/en/docs/tutorial/body-nested-models.md
+++ b/docs/en/docs/tutorial/body-nested-models.md
@@ -183,18 +183,18 @@ This would mean that **FastAPI** would expect a body ... | Tiny changes related to typos and style. | https://api.github.com/repos/tiangolo/fastapi/pulls/10468 | 2023-10-18T18:17:38Z | 2023-10-20T08:58:03Z | 2023-10-20T08:58:03Z | 2023-10-20T08:58:14Z | 778 | tiangolo/fastapi | 23,084 |
Improve compatibility of wsgi_flask_app example on OS X | diff --git a/examples/simple/wsgi_flask_app.py b/examples/simple/wsgi_flask_app.py
index bbde69137e..b34fbc8378 100644
--- a/examples/simple/wsgi_flask_app.py
+++ b/examples/simple/wsgi_flask_app.py
@@ -15,9 +15,9 @@ def hello_world() -> str:
addons = [
- # Host app at the magic domain "proxapp.local" on port 8... | ### Problem
`example/simple/wsgi_flask_app.py` uses a magic domain `proxapp.local` which cannot be resolved on OS X hosts. This is because Apple uses `.local` as a reserved domain for device discovery in Bonjour's mDNS.
Reference: https://support.apple.com/en-us/HT207511
### How to reproduce
Environment: OS ... | https://api.github.com/repos/mitmproxy/mitmproxy/pulls/3963 | 2020-04-29T03:56:41Z | 2020-04-29T09:22:55Z | 2020-04-29T09:22:55Z | 2020-04-29T15:28:45Z | 246 | mitmproxy/mitmproxy | 28,297 |
Gate - borrow & repay for margin | diff --git a/ts/src/base/Exchange.ts b/ts/src/base/Exchange.ts
index e014415b29b7..c8188726d539 100644
--- a/ts/src/base/Exchange.ts
+++ b/ts/src/base/Exchange.ts
@@ -4565,7 +4565,7 @@ export default class Exchange {
}
}
- checkRequiredMarginArgument (methodName: string, symbol: string, marginMode: s... | await e.borrowMargin ('USDT', 1, undefined, {marginMode: 'cross'});
```
{
id: 17835350,
currency: "USDT",
amount: 4,
symbol: undefined,
timestamp: 1700893271174,
datetime: "2023-11-25T06:21:11.174Z",
info: {
id: "17835350",
create_time: "1700893271174",
update_time: "1700898941442"... | https://api.github.com/repos/ccxt/ccxt/pulls/20124 | 2023-11-25T08:49:50Z | 2023-11-27T10:16:01Z | 2023-11-27T10:16:01Z | 2023-11-27T10:16:02Z | 3,383 | ccxt/ccxt | 13,842 |
Added a new podcast… | diff --git a/blogs.md b/blogs.md
index 5a5e284d..9a0ece2f 100644
--- a/blogs.md
+++ b/blogs.md
@@ -20,6 +20,7 @@ Podcasts
* [TWIMLAI](https://twimlai.com/shows/)
* [Machine Learning Guide](http://ocdevel.com/podcasts/machine-learning)
* [DataTalks.Club](https://anchor.fm/datatalksclub)
+* [Super Data Science Podcast... | I have added a new podcast "Super Data Science Podcast with Joh Krohn" under the Podcasts section and this is a really great podcast for ML enthusiasts. | https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/922 | 2023-03-17T16:51:27Z | 2023-04-12T00:39:02Z | 2023-04-12T00:39:02Z | 2023-04-12T00:39:02Z | 144 | josephmisiti/awesome-machine-learning | 52,328 |
Use explicit device name for Stookalert | diff --git a/homeassistant/components/stookalert/binary_sensor.py b/homeassistant/components/stookalert/binary_sensor.py
index d3920d3f0e42..1d074bba9c2d 100644
--- a/homeassistant/components/stookalert/binary_sensor.py
+++ b/homeassistant/components/stookalert/binary_sensor.py
@@ -36,6 +36,7 @@ class StookalertBinaryS... | <!--
You are amazing! Thanks for contributing to our project!
Please, DO NOT DELETE ANY TEXT from this template! (unless instructed).
-->
## Proposed change
<!--
Describe the big picture of your changes here to communicate to the
maintainers why we should accept this pull request. If it fixes a bug
or... | https://api.github.com/repos/home-assistant/core/pulls/96755 | 2023-07-17T10:34:28Z | 2023-07-17T10:58:51Z | 2023-07-17T10:58:51Z | 2023-07-20T09:39:00Z | 175 | home-assistant/core | 39,034 |
Fix Failing test for JSON Formatter on Python 3.8 | diff --git a/airflow/utils/log/es_task_handler.py b/airflow/utils/log/es_task_handler.py
index d54cb1231f39b..47f970f6041f5 100644
--- a/airflow/utils/log/es_task_handler.py
+++ b/airflow/utils/log/es_task_handler.py
@@ -208,7 +208,6 @@ def set_context(self, ti):
if self.json_format:
self.format... | This test is failing on Master:
```
tests/utils/log/test_es_task_handler.py ..................F
_ TestElasticsearchTaskHandler.test_set_context_w_json_format_and_write_stdout _
self = <tests.utils.log.test_es_task_handler.TestElasticsearchTaskHandler testMethod=test_set_context_w_json_format_and_write_stdout>... | https://api.github.com/repos/apache/airflow/pulls/9278 | 2020-06-13T17:21:27Z | 2020-06-13T18:09:13Z | 2020-06-13T18:09:13Z | 2020-06-13T18:09:17Z | 361 | apache/airflow | 14,614 |
Doc improvements for url_for() | diff --git a/flask/helpers.py b/flask/helpers.py
index 501a2f811c..7e20c97d47 100644
--- a/flask/helpers.py
+++ b/flask/helpers.py
@@ -113,7 +113,7 @@ def generate():
yield '!'
return Response(generate())
- Alternatively it can also be used around a specific generator:
+ Alternativ... | Recently I had to ask from IRC how to generate proper full url using `url_for()`, so I think that its docs should at least mention `SERVER_NAME`.
Also fixes a formatting error in another docstring.
| https://api.github.com/repos/pallets/flask/pulls/571 | 2012-08-01T08:33:33Z | 2012-08-01T16:34:50Z | 2012-08-01T16:34:50Z | 2020-11-14T07:08:20Z | 259 | pallets/flask | 20,238 |
Fixed usage of deploy_template for deploying cloudformation stack | diff --git a/localstack/services/cloudformation/cloudformation_listener.py b/localstack/services/cloudformation/cloudformation_listener.py
index 80a98a1fe1664..eed091ee13dfa 100644
--- a/localstack/services/cloudformation/cloudformation_listener.py
+++ b/localstack/services/cloudformation/cloudformation_listener.py
@@ ... | Fixes error when deploying cloudformation stack:
TypeError: deploy_template() takes exactly 2 arguments (1 given) | https://api.github.com/repos/localstack/localstack/pulls/374 | 2017-10-04T17:30:39Z | 2017-10-08T00:37:33Z | 2017-10-08T00:37:33Z | 2017-10-08T00:37:33Z | 137 | localstack/localstack | 29,116 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.