text-based
Here are 207 public repositories matching this topic...
-
Updated
Apr 17, 2021 - C++
-
Updated
Feb 11, 2021 - Elixir
Brief summary of issue / Description of requested feature:
We have one usage of Q_FOREACH. This had been discouraged for some time (since 2016-06-16).
https://github.com/Mudlet/Mudlet/blob/c5285d17615029a7af245948f7dad18c8c39fecc/src/Host.cpp#L1785
Steps to reproduce the issue / Reasons for adding feature:
- Look at Qt documentation within Qt Creator:
`Q_FOREACH(variable, co
-
Updated
Oct 18, 2020 - Java
-
Updated
Mar 31, 2021 - SCSS
Refactor DI
Refactor classes (including tests) to resolve dependencies out of the IoC container with $this->dep = app($class::class)
in the constructor, instead of through the constructor method arguments.
Constructor arg lists get quite long (see PopulationCalculator), and needs fixing test constructors whenever this changes.
Beep, boop, I'm a bot! Th
-
Updated
Jan 31, 2021 - Java
-
Updated
Feb 14, 2018 - C#
-
Updated
Jan 17, 2021 - Java
-
Updated
Apr 7, 2021
-
Updated
Oct 6, 2018 - R
-
Updated
May 12, 2018 - Haskell
-
Updated
Mar 31, 2021 - JavaScript
Sometimes there can be multiple ducks around at one moment. Right now they queue for being affected by fired shots, which generally works well. But the exception should be the fleeing behavior.
-
Updated
Apr 13, 2021 - Java
-
Updated
Oct 1, 2020 - C
-
Updated
Mar 31, 2021 - Python
-
Updated
Jan 17, 2021 - C++
-
Updated
Aug 28, 2020 - JavaScript
-
Updated
Jun 12, 2017 - OCaml
-
Updated
Apr 14, 2021 - Rust
-
Updated
Apr 18, 2021 - C
-
Updated
Dec 30, 2020 - Python
Improve this page
Add a description, image, and links to the text-based topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the text-based topic, visit your repo's landing page and select "manage topics."
Describe the bug
Minor bug involving passing a
set
as a kwarg to themsg
method-- theset
is correctly identified as an iterable, but is then presumed to be subscriptable in subsequent operations.https://github.com/evennia/evennia/blob/574d7fbd4f65cae60c534fe592803057d452ed7b/evennia/server/sessionhandler.py#L252-L262
This does not work on
set
objects.